Notice
Recent Posts
Recent Comments
Link
목록2023/04/27 (1)
넘치게 채우기
[LeetCode] 258. Add Digits
https://leetcode.com/problems/add-digits/description/ Add Digits - LeetCode Can you solve this real interview question? Add Digits - Given an integer num, repeatedly add all its digits until the result has only one digit, and return it. Example 1: Input: num = 38 Output: 2 Explanation: The process is 38 --> 3 + 8 --> 11 11 --> leetcode.com 난이도 : Easy 문제 Given an integer num, repeatedly add all i..
PS/LeetCode
2023. 4. 27. 01:44