250x250
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
- @configuration
- 티스토리챌린지
- 코드트리
- html form
- 예외와 트랜잭션 커밋
- 인터페이스
- 싱글톤
- http 메시지 컨버터
- 의존관계
- DI
- java
- 다익스트라
- 백준
- 오블완
- equals()
- 스프링컨테이너
- objecterror
- 코드트리조별과제
- 오버라이딩
- 프로그래머스
- 서블릿
- fielderror
- 참조변수
- 추상클래스
- 김영한
- 테스트코드
- 프록시
- 스프링
- 코딩테스트
- HttpServletResponse
Archives
- Today
- Total
목록2025/07/05 (2)
minOS
프로그래머스 가장 많이 받은 선물
https://school.programmers.co.kr/learn/courses/30/lessons/258712 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr def solution(friends, gifts): n = len(friends) d = dict() d = {friends[i]: i for i in range(n)} ans = {i : 0 for i in range(n)} array = [[0 for _ in range(n)] for _ in range(n)] for gift in gifts: arr = gift.split() array[..
Problem Solving/프로그래머스
2025. 7. 5. 21:23
프로그래머스 점프와 순간 이동
https://school.programmers.co.kr/learn/courses/30/lessons/12980 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 처음에 BFS 풀었다가 효율성에서 막혔다 from collections import dequedef solution(n): q= deque() visited = [0 for _ in range(n+1)] q.append((1,1)) visited[1] =1 while q : x,step = q.popleft() if x == n : return step ..
Problem Solving/프로그래머스
2025. 7. 5. 21:18