【LeetCode 38_字符串_算術運算】Count and Say

1 string countAndSay(int n) 2 { 3 string res; 4 if (n <= 0) 5 return res; 6 7 res = "1"; 8 while (n-- > 1) { 9 int len = res.size(); 10 int i, j; 11
相關文章
相關標籤/搜索