indexOf
258. Add Digits Problem Given an integer num, repeatedly add all its digits until the result has only one digit, and return it. Questions before reading example Example Input: num = 38 Outpu...
48. Group Anagrams Problem Given an array of strings strs, group the anagrams together. You can return the answer in any order. An Anagram is a word or phrase formed by rearranging the letters o...
9. Palindrome Number Problem & Example Questions before reading example 나의 풀이 Spent time 5m Review 예전에 분명히 풀어보았던 팰린드롬의 수 문제 함정이 있을까 조마조마하며 풀었는데 다행히 한번에 잘 풀렸다.
LeetCode 1198. Find Smallest Common Element in All Rows
323. Number of Connected Components in an Undirected Graph