首页 > 代码库 > LeetCode之389. Find the Difference
LeetCode之389. Find the Difference
--------------------------------------------------
先计算每个字母的出现次数然后减去,最后剩下的那一个就是后来添加的了。
AC代码:
public class Solution { public char findTheDifference(String s, String t) { int book[]=new int[26]; for(int i=0;i<s.length();i++) book[s.charAt(i)-‘a‘]++; for(int i=0;i<t.length();i++) book[t.charAt(i)-‘a‘]--; for(int i=0;i<book.length;i++) if(book[i]!=0) return (char)(i+‘a‘); return ‘ ‘; } }
题目来源: https://leetcode.com/problems/find-the-difference/
LeetCode之389. Find the Difference
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。