[LeetCode] 65. Valid Number(多個標誌位)

【思路】該題題幹不是很明確,只能根據用例來理解什麼樣的字符串纔是符合題意的,本題關鍵在於幾個標誌位的設立,將字符串分爲幾個部分,代碼如下: 1 class Solution 2 { 3 public: 4 string trim(string s) 5 { 6 int i=0; 7 while(s[i]==' ') i ++;
相關文章
相關標籤/搜索