Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 백준 16236
- MySQL
- spring oauth
- with recursive
- Spring Boot
- MSA
- 백준 15685
- 백준 19238
- springboot
- 백준 16235
- 백준
- 백준 파이썬
- 백준 16719
- Coroutine
- Spring
- JVM
- Kotlin
- 파이썬
- 웹어플리케이션 서버
- 프로그래머스
- JPA
- java 기술면접
- re.split
- sql 기술면접
- 프로래머스
- spring security
- 백준 17779
- spring cloud
- java
- 백준 17626
Archives
- Today
- Total
목록프로그래머스 타겟넘버 (1)
시작이 반
[프로그래머스] 타겟넘버 (python 파이썬)
재귀 문제이다. dfs로 문제를 풀었다. 한 숫자에 대해서 양수 or 음수를 더할수 있다. 마지막 depth에 도달했을때 target과 같으면 count 를 증가시킨다. count = 0 def solution(numbers, target): dfs(numbers, target, 0, 0) return count def dfs(numbers, target, depth, result): global count if depth == len(numbers): if result == target: count += 1 return left = result - numbers[depth] right = result + numbers[depth] dfs(numbers, target, depth+1, left) dfs(..
알고리즘/Programmers
2021. 3. 10. 17:27