摘要: description: 看给定的数字是否是合法数字 Note: Example: answer: class Solution { public: bool isNumber(string s) { int len = s.size(); int left = 0, right = len 1; 阅读全文