일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 개발자 취업
- 딥러닝
- til
- 활성화 함수
- 기능개발
- 99항해
- 큐
- 스택
- 개발자취업
- 항해99
- 구현
- leetcode
- 백준 2309
- BOJ
- 99클럽
- 코딩테스트 준비
- easy 딥러닝
- 해시
- 코딩테스트준비
- dfs
- 알고리즘
- 혁펜하임
- Python
- 프로그래머스
- softeer
- boj 2309
- 백준
- python 2309
- BFS
- 파이썬
- Today
- Total
목록2025/01/14 (2)
동까의 코딩
https://school.programmers.co.kr/learn/courses/30/lessons/60060?language=python3 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr def solution(words, queries): answer = [] for st in queries: cnt = 0 start = 0 end = len(st) if st[0] == '?': for j in range(len(st)): if st[j] != '?': ..

https://www.acmicpc.net/problem/11657 import sysinput = sys.stdin.readlineINF = int(1e9)def bellman_ford(start): dist[start] = 0 for i in range(1, n + 1): for j in range(m): now, next, cost = edges[j][0], edges[j][1], edges[j][2] if dist[now] != INF and dist[next] > dist[now] + cost: dist[next] = dist[now] + cost if i == n: ..