| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- realclass
- 읽기
- 리얼 클래스
- 잡생각
- 뭐든
- 괜찮음
- 화상영어
- 링피트
- Problem Solving
- FIT XR
- 3줄정리
- 프로젝트
- 스탭퍼
- 30분
- 매일
- 운동
- 미드시청
- 개발자
- 월간
- Daily Challenge
- 만화도
- 사이드
- 10분
- 영어원서읽기
- Writing
- 쓰릴오브파이트
- 영어공부
- 파비최
- English
- leetcode
Archives
- Today
- Total
파비의 매일매일 공부기록
2023.02.15 Today's Challenge 본문
https://leetcode.com/problems/add-to-array-form-of-integer/
Add to Array-Form of Integer - LeetCode
Add to Array-Form of Integer - The array-form of an integer num is an array representing its digits in left to right order. * For example, for num = 1321, the array form is [1,3,2,1]. Given num, the array-form of an integer, and an integer k, return the ar
leetcode.com
뒤에서부터 순회하면서 채워 넣으면 됨.
class Solution:
def addToArrayForm(self, num: List[int], k: int) -> List[int]:
for i in range(len(num)-1, -1, -1):
k, num[i] = divmod(num[i]+k, 10)
while k:
k, a = divmod(k, 10)
num = [a] + num
return num반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| 2023.02.17 Today's Challenge (0) | 2023.02.17 |
|---|---|
| 2023.02.16 Today's Challenge (1) | 2023.02.16 |
| 2023.02.14 Today's Challenge (0) | 2023.02.14 |
| 2023.02.13 Today's Challenge (0) | 2023.02.13 |
| 2023.02.12 Today's Challenge (0) | 2023.02.12 |
Comments