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
- segmentation map
- controllable video generation
- dreammotion
- visiontransformer
- Vit
- segmenation map generation
- controlnext
- style align
- video generation
- image editing
- 3d generation
- 네이버 부스트캠프 ai tech 6기
- Python
- 코테
- 코딩테스트
- VirtualTryON
- transformer
- magdiff
- diffusion models
- 논문리뷰
- DP
- Programmers
- 3d editing
- video editing
- score distillation
- diffusion model
- diffusion
- BOJ
- emerdiff
- 프로그래머스
Archives
- Today
- Total
목록큰수만들기 (1)
평범한 필기장
[Programmers_Python] 큰 수 만들기
https://school.programmers.co.kr/learn/courses/30/lessons/42883 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 내 풀이 방식 처음으로 내가 접근한 방식은 itertools의 combinations 함수를 이용해 가능한 모든 경우를 다 찾고 거기서 최대값을 구하는 방식을 생각했다. 시간 초과가 날 것이라고 예상은 했지만, 역시나 시간 초과가 발생했다. import itertools def solution(number, k): number_lst = list(map(int, number)) n = len(nu..
코딩 테스트 준비/Programmers
2023. 5. 8. 01:13