Skip to content

8. String to Integer (atoi)

Medium

Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).

The algorithm for myAtoi(string s) is as follows:

  1. Read in and ignore any leading whitespace.
  2. Check if the next character (if not already at the end of the string) is '-' or '+'. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present.
  3. Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored.
  4. Convert these digits into an integer (i.e. "123" -> 123, "0032" -> 32). If no digits were read, then the integer is 0. Change the sign as necessary (from step 2).
  5. If the integer is out of the 32-bit signed integer range [-231, 231 - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -231 should be clamped to -231, and integers greater than 231 - 1 should be clamped to 231 - 1.
  6. Return the integer as the final result.

Note:

  • Only the space character ' ' is considered a whitespace character.
  • Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.

Solution

class Solution:
    def myAtoi(self, s: str) -> int:
        s = s.lstrip()

        polarity = 1
        if len(s) > 0:
            if s[0] == "-":
                polarity = -1
            if s[0] == "-" or s[0] == "+":
                s = s[1:]

        res = 0
        for c in s:
            if c.isnumeric():
                res = 10 * res + int(c)
            else:
                break

        res = polarity * res
        if res > 2147483647:
            res = 2147483647
        elif res < -2147483648:
            res = -2147483648

        return res

nn