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
- controlnext
- magdiff
- segmenation map generation
- video generation
- dreammotion
- diffusion model
- DP
- 네이버 부스트캠프 ai tech 6기
- 3d generation
- 프로그래머스
- masactrl
- Programmers
- segmentation map
- image editing
- 3d editing
- score distillation
- 논문리뷰
- emerdiff
- transformer
- Vit
- video editing
- diffusion
- 코테
- Python
- diffusion models
- 코딩테스트
- VirtualTryON
- visiontransformer
- BOJ
- controllable video generation
Archives
- Today
- Total
목록짝지어제거하기 (1)
평범한 필기장
[Programmers_Python] 짝지어 제거하기
https://school.programmers.co.kr/learn/courses/30/lessons/12973 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 내가 생각한 풀이방식 나는 연속된 문자가 나타나면 제거하고 제거되고 남은 문자들을 이어붙이는 방식으로 풀려고 했다. 아래 코드와 같이 푸니까 시간초과가 났다. Stack 자료구조를 이용할 생각을 못했다. def solution(s): while True: if len(s) == 0: return 1 bf_s = str(s) for i in range(len(s) - 1): if s[i] == s[..
코딩 테스트 준비/Programmers
2023. 3. 27. 17:53