LeetCode_389-Find the Difference

Solution:編碼 思路:添加不一樣字符到s再與t比較string  char findTheDifference(string s, string t) {         if(s.empty()){             return t[0];         }         string ss;         for(int i = 0; i<26; i++) {      
相關文章
相關標籤/搜索