8. 字符串转换整数 (atoi)
Posted xiao-xue-di
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8. 字符串转换整数 (atoi)相关的知识,希望对你有一定的参考价值。
8. 字符串转换整数 (atoi)
方法一
import re import math class Solution(object): def myAtoi(self, str): """ :type str: str :rtype: int """ r1 = re.match(r‘s*[-+]?d+‘,str) if r1!=None : r2=int(r1.group()) if r2<=-2147483648: return -2147483648 elif r2>=2147483648: return 2147483647 else: return r2 else: return 0
以上是关于8. 字符串转换整数 (atoi)的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode(算法)- 8. 字符串转换整数 (atoi)