티스토리 뷰
기술(Tech, IT)/리트코드(LeetCode)
[LeetCode] 2520. Count the Digits That Divide a Number
Daniel803 2023. 7. 29. 07:42input으로 주어진 num의 각 자리의 숫자를 나머지 연산자와 나누기를 통해 list에 저장하고, 이를 하나씩 꺼내 num이 나누어 떨어지면 카운트를 더해 반환했다.
class Solution:
def countDigits(self, num: int) -> int:
ret = 0
n = num
nums = []
while n > 0:
nums.append(n % 10)
n //= 10
for n in nums:
if num % n == 0:
ret += 1
return ret
참고:
- https://leetcode.com/problems/count-the-digits-that-divide-a-number/
반응형
'기술(Tech, IT) > 리트코드(LeetCode)' 카테고리의 다른 글
[LeetCode] 1214. Two Sum BSTs (0) | 2023.07.31 |
---|---|
[LeetCode] 2026. Low-Quality Problems (0) | 2023.07.30 |
[LeetCode] 1167. Minimum Cost to Connect Sticks (0) | 2023.07.21 |
[LeetCode] 1166. Design File System (0) | 2023.07.20 |
[LeetCode] 1165. Single-Row Keyboard (0) | 2023.07.19 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 소켓 프로그래밍
- defaultdict
- 안드로이드
- leetcode
- 리트코드
- machine learning
- Python
- 오블완
- 이코노미스트 에스프레소
- java
- Android
- 딕셔너리
- 파이썬
- vertex shader
- 이코노미스트
- Computer Graphics
- ml
- 머신 러닝
- 투 포인터
- I2C
- The Economist Espresso
- DICTIONARY
- socket programming
- The Economist
- C++
- Hash Map
- 티스토리챌린지
- join
- tf-idf
- min heap
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함
반응형