일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Unknown command: cask
- string
- sting position
- 알고리즘 풀이
- Modified Date
- list to set
- permutations
- Split
- list.sorted()
- List 초기화
- Python
- set to list
- List
- RecursionError
- homebrew-core is a shallow clone.
- index
- python3
- cask
- Python 몫
- Boto3
- 프로그래머스
- 피보나치 수
- list.pop(0)
- Python 나머지
- 알고리즘
- COUNT
- List to String
- zip()
- sort()
- Algorithm
- Today
- Total
목록index (4)
데이터와 코드로 세상을 바라봅니다.
# 사람과 순서의 기억이 필요하다. # 사람은 1~n 사이의 숫자를 갖는다. # > 특정 숫자 % n 으로 하면 0~n-1이 나온다. # 순서는 지속적으로 증가한다. # > 특정 숫자 // n 으로 하면 0~ 이 나온다. # 실패하지 않는 경우 0,0을 반납한다. # 문자열 2개의 연속성을 체크한다. def solution(n, words): answer = [] say = [] index = 0 order = 0 seq = 0 for w in words : if w in say : order = (index % n) + 1 seq = (index // n) + 1 break else : say.append(w) if index != 0 : first_l = say[len(say)-2][len(say[l..
[LRU - 개념] 가장 최근에 사용되지 않은 것 페이지에서 제거할 때 가장 오랫동안 사용하지 않은 것을 제거하겠다는 알고리즘이다. 이 알고리즘의 기본 가설은 가장 오랫동안 사용하지 않았던 데이터라면 앞으로도 사용할 확률이 적다는 것. def solution(cacheSize, cities): answer = 0 cache_list = [] cache_age = [] for j in range(0, len(cities)): cities[j] = str(cities[j]).upper() for i in range(0, len(cities)): if cacheSize == 0 : answer = 5*len(cities) break if cache_list.count(cities[i]) == 1 : for a..
def solution(N): answer = '' for i in range(1,N+1): answer_star = '' for k in range(1,i+1): answer_star = answer_star+"*" answer = answer+answer_star+"\n" answer = answer[:-1] print(answer) return answer [문제] - 별 찍기 - 1 문제 설명 첫번째 줄에서 N번째 줄까지 다음과 같은 규칙으로 출력한 결과값을 구하여라. (1
[풀이 코드] def solution(participant, completion): answer = '' participant=sorted(participant) completion=sorted(completion) answer = participant[len(completion)] for i in range(0,len(completion)): if participant[i]!=completion[i]: answer=participant[i] break return answer def solution(participant, completion): answer = '' for i in range(0, len(completion)) : index_pos = participant.index(completion..