일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- Baekjoon
- 맥북
- 편스토랑 우승상품
- 코로나19
- Docker
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- 파이썬
- 더현대서울 맛집
- 우분투
- SW Expert Academy
- ChatGPT
- Git
- 금융문자분석경진대회
- PYTHON
- gs25
- Kaggle
- 자연어처리
- leetcode
- 프로그래머스
- 프로그래머스 파이썬
- AI 경진대회
- 편스토랑
- 백준
- dacon
- ubuntu
- github
- 데이콘
- hackerrank
- programmers
- Today
- Total
솜씨좋은장씨
[leetCode] 8. String to Integer (atoi) (Python) 본문
Implementatoiwhich converts a string to an integer.
The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.
The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.
If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.
If no valid conversion could be performed, a zero value is returned.
Note:
- Only the space character ' ' is considered as whitespace character.
- Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−2^31, 2^31 − 1]. If the numerical value is out of the range of representable values, INT_MAX (2^31 − 1) or INT_MIN (−2^31) is returned.
Example 1:
Input: "42"
Output: 42
Example 2:
Input: " -42"
Output: -42
Explanation: The first non-whitespace character is '-', which is the minus sign.
Then take as many numerical digits as possible, which gets 42.
Example 3:
Input: "4193 with words"
Output: 4193
Explanation: Conversion stops at digit '3' as the next character is not a numerical digit.
Example 4:
Input: "words and 987"
Output: 0
Explanation: The first non-whitespace character is 'w', which is not a numerical
digit or a +/- sign. Therefore no valid conversion could be performed.
Example 5:
Input: "-91283472332"
Output: -2147483648
Explanation: The number "-91283472332" is out of the range of a 32-bit signed integer.
Thefore INT_MIN (−2^31) is returned.
Solution
import re
class Solution:
def myAtoi(self, string) -> int:
answer = 0
string = string.strip()
if string == "":
answer = 0
else:
number_list = re.findall(r"^[-+]?[0-9]+", string)
print(number_list)
if len(number_list) == 0:
answer = 0
else:
number = int(number_list[0])
if number > pow(2, 31) - 1:
number = pow(2, 31) -1
elif number < pow(2, 31) * (-1):
number = pow(2, 31) * (-1)
answer = number
return answer
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 66. Plus One (Python) (0) | 2020.05.20 |
---|---|
[leetCode] 69. Sqrt(x) (Python) (0) | 2020.05.19 |
[BaeKJoon] 11727번: 2xn타일링 2 (Python) (0) | 2020.05.17 |
[BaekJoon] 2579번 : 계단 오르기 (Python) (2) | 2020.05.16 |
[BaekJoon] 10820번 : 문자열 분석 (Python) (2) | 2020.05.15 |