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
- DP
- magdiff
- segmentation map
- Python
- diffusion models
- 프로그래머스
- style align
- video editing
- video generation
- image editing
- 코테
- visiontransformer
- controllable video generation
- 논문리뷰
- Programmers
- BOJ
- 네이버 부스트캠프 ai tech 6기
- diffusion model
- VirtualTryON
- 코딩테스트
- 3d editing
- transformer
- score distillation
- segmenation map generation
- diffusion
- controlnext
- dreammotion
- Vit
- emerdiff
- 3d generation
Archives
- Today
- Total
목록단어변환 (1)
평범한 필기장
[Programmers_Python] 단어 변환
https://school.programmers.co.kr/learn/courses/30/lessons/43163 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 이 문제는 BFS방식을 이용해서 풀 수 있다. 처음에 몇번 째에 정답에 도착하는 지를 잘못 지정해서 계속 틀렸던 것 같다. 문제에서 주어진 예시를 그래프로 나타내면 위와 같은 방식이 된다. from collections import deque def solution(begin, target, words): if target not in words: return 0 q = deque() q.appe..
코딩 테스트 준비/Programmers
2023. 6. 19. 15:16