| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
Tags
- 미드시청
- 링피트
- 리얼 클래스
- FIT XR
- 뭐든
- realclass
- 스탭퍼
- 매일
- Problem Solving
- 개발자
- 쓰릴오브파이트
- 화상영어
- Writing
- 운동
- 영어공부
- 사이드
- 파비최
- 10분
- 만화도
- leetcode
- 3줄정리
- 읽기
- Daily Challenge
- 30분
- 잡생각
- 괜찮음
- 프로젝트
- English
- 월간
- 영어원서읽기
Archives
- Today
- Total
파비의 매일매일 공부기록
2023.04.23 Today's Challenge 본문
https://leetcode.com/problems/restore-the-array/
Restore The Array - LeetCode
Can you solve this real interview question? Restore The Array - A program was supposed to print an array of integers. The program forgot to print whitespaces and the array is printed as a string of digits s and all we know is that all integers in the array
leetcode.com
결국 DP로 푸는 문제
class Solution:
def numberOfArrays(self, s: str, k: int) -> int:
m, n = len(s), len(str(k))
mod = 10 ** 9 + 7
dp = [0] * (m+1)
def dfs(start):
if dp[start]:
return dp[start]
if start == m:
return 1
if s[start] == '0':
return 0
count = 0
for end in range(start, m):
curr_number = s[start: end+1]
if int(curr_number) > k:
break
count += dfs(end+1)
dp[start] = count % mod
return count
return dfs(0) % mod반응형
'Problem Solving > LeetCode' 카테고리의 다른 글
| 2023.04.25 Today's Challenge (0) | 2023.04.25 |
|---|---|
| 2023.04.24 Today's Challenge (0) | 2023.04.24 |
| 2023.04.22 Today's Challenge (0) | 2023.04.22 |
| 2023.04.21 Today's Challenge (0) | 2023.04.21 |
| 2023.04.20 Today's Challenge (0) | 2023.04.20 |
Comments