100天每日一题(day11)

tech2024-07-28  53

 

题解:

感觉是一道靠测试工程师的题,编写测试用例。。没时间想,就用了评论里一个简单的方法

判断异常:

class Solution:

    def isNumber(self, s: str) -> bool:

        try:

            answer=float(s)

            return True

        except:

            return False

 

最新回复(0)