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
- 기계학습
- Python
- GPT
- LLM
- 프롬프트
- 머신러닝
- Deeplearning
- Django
- 일기
- prompt engineering
- 부스트캠프
- LeetCode
- Linear Regression
- 파이썬
- transformer
- 알고리즘
- ChatGPT
- attention
- rnn
- 프로그래머스
- Programmers
- BFS
- deque
- machinelearning
- 코테
- Linear Model
- gradient descent
- 코딩테스트
- dl
- NLP
Archives
- Today
- Total
목록lru (1)
크크루쿠쿠
[프로그래머스] 캐시 파이썬
https://programmers.co.kr/learn/courses/30/lessons/17680 if-else문의 순서의 중요성 쉽다고 급하게 풀지말고 조건을 차근차근 생각하며 풀어야 한다. from collections import deque def solution(cacheSize, cities): if cacheSize==0: return len(cities)*5 answer = 0 cache=deque([]) for i in cities: #대소문자 구분 X i=i.lower() #hit! if i in cache: cache.remove(i) cache.appendleft(i) answer+=1 #miss 중 cache가 남을 때 elif len(cache) < cacheSize: cach..
알고리즘
2021. 6. 30. 06:07