收获:
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)
原文地址:https://www.cnblogs.com/ChevisZhang/p/12243538.html
时间: 2024-10-02 21:41:25