String to Integer Conversion Problem
String to Integer Conversion Problem
The function should not use internal library function like parseInt or
parseFloat.
Constraints:
• 0 <= s.length <= 200
• s consists of English letters (lower-case and upper-case), digits (0-9), ’
‘,’+‘,’-‘, and’.’.
Example 1
• Input: s = “42”
• Output: 42
Explanation: The underlined characters are what is read in and the caret is
the current reader position.
• Step 1: “42” (no characters read because there is no leading whitespace)
• Step 2: “42” (no characters read because there is neither a ‘-’ nor ‘+’)
• Step 3: “42” (“42” is read in)
Example 2
• Input: s = ” -042”
• Output: -42
1
Explanation:
• Step 1: “-042” (leading whitespace is read and ignored)
• Step 2: “-042” (‘-’ is read, so the result should be negative)
• Step 3: “-042” (“042” is read in, leading zeros ignored in the result)