leetcode202快樂數(JAVA)(hashset)

class Solution { public boolean isHappy(int n) { if(n==1||n==-1) return true; HashSet<Integer>h=new HashSet<Integer>(); int m=0; while
相關文章
相關標籤/搜索