반응형
Recent Posts
Notice
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 |
Tags
- easy 딥러닝
- python 2309
- dfs
- 개발자 취업
- BFS
- 99항해
- 프로그래머스
- 99클럽
- Python
- 백준
- 알고리즘
- 활성화 함수
- softeer
- 기능개발
- 백준 2309
- til
- 혁펜하임
- boj 2309
- 항해99
- 파이썬
- 딥러닝
- 해시
- 큐
- 구현
- leetcode
- BOJ
- 개발자취업
- 코딩테스트준비
- 코딩테스트 준비
- 스택
Archives
- Today
- Total
목록2024/06/22 (1)
동까의 코딩
[99클럽] 33일차 TIL
https://leetcode.com/problems/find-the-winner-of-the-circular-game/ class Node: def __init__(self, v): self.val = v self.next = None self.prev = Noneclass Solution: def findTheWinner(self, n: int, k: int) -> int: start_node = cur_node = Node(1) prev_node = None for i in range(2, n + 1): new_node = Node(i) cur_node.next = new_n..
문제 풀이/99클럽
2024. 6. 22. 23:11