Java/202. Happy Number 快樂數

題目       代碼部分一(3ms 92.36%) class Solution { public boolean isHappy(int n) { Set<Integer> set = new HashSet<>(); while(n != 1 && !set.contains(n)){ set.add(n);
相關文章
相關標籤/搜索