摘要:
class Solution { public boolean isHappy(int n) { Set<Integer> set=new HashSet<Integer>(); int temp=n; set.add(temp); while(true) { temp=sum(temp); if( 阅读全文
摘要:
给定两个字符串 s 和 t ,编写一个函数来判断 t 是否是 s 的字母异位词。 //用的是HashMap这个数据结构,和之前的那个数组中重复元素比较类似,不用这个的话,直接用散列表来看一下效果怎么样 class Solution { public boolean isAnagram(String 阅读全文