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++) {      
相关文章
相关标签/搜索