码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode之389. Find the Difference

时间:2016-10-24 07:40:54      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:idt   code   top   --   har   target   char   int   return   

技术分享

--------------------------------------------------

 

先计算每个字母的出现次数然后减去,最后剩下的那一个就是后来添加的了。

 

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

标签:idt   code   top   --   har   target   char   int   return   

原文地址:http://www.cnblogs.com/cc11001100/p/5991647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!