摘要:
1 class Solution { 2 public: 3 double pow(double x, int n) { 4 if(x == 1) 5 { 6 return 1; 7 } 8 if(x ... 阅读全文
摘要:
1 class Solution { 2 public: 3 string addBinary(string a, string b) { 4 int aL = a.length(); 5 int bL = b.length(); 6 int cL; 7 ... 阅读全文