8. 字符串转换整数 (atoi) (leetcode)

Posted ChevisZhang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8. 字符串转换整数 (atoi) (leetcode)相关的知识,希望对你有一定的参考价值。

收获:
  1.复习了正则表达式, re.findall() 返回的是符合条件的list
  2. 当涉及到与全球变量比较大小,或者有边界值的时候需要灵活使用 min max
  3. 学习到了 * 的用法,*只可在传参中使用
 
 
 
 
class Solution:
    def myAtoi(self, str: str) -> int:
        return min(max(int(*re.findall(‘^[+-]?d+‘,str.lstrip())),-2**31),2**31-1)

以上是关于8. 字符串转换整数 (atoi) (leetcode)的主要内容,如果未能解决你的问题,请参考以下文章

8. 字符串转换整数 (atoi)

LeetCode 8. 字符串转换整数 (atoi)

LeetCode 8. 字符串转换整数 (atoi)

前端与算法 leetcode 8. 字符串转换整数 (atoi)

8. 字符串转换整数 (atoi)

8. 字符串转换整数 (atoi)