일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 딕셔너리
- 수학
- programmers
- 가상메모리 관리
- 재귀
- 그리디
- 파이썬
- 브루트포스
- level1
- level3
- MYSQL
- 가상메모리
- python
- 코딩테스트
- 스택
- N과M
- level2
- level0
- BFS
- 힙
- 프로그래머스
- 다이나믹 프로그래밍
- 백준
- 다익스트라
- dfs
- 운영체제
- dict
- BOJ
- DP
- 구현
- Today
- Total
목록분류 전체보기 (397)
동캄의 코딩도장
https://programmers.co.kr/learn/courses/30/lessons/42577?language=python3 코딩테스트 연습 - 전화번호 목록 전화번호부에 적힌 전화번호 중, 한 번호가 다른 번호의 접두어인 경우가 있는지 확인하려 합니다. 전화번호가 다음과 같을 경우, 구조대 전화번호는 영석이의 전화번호의 접두사입니다. 구조 programmers.co.kr 시도1: 실패 (시간초과 풀이) #프로그래머스 전화번호 목록 def solution(phone_book): phone_book.sort() for i in range(len(phone_book)): for j in range(i+1,len(phone_book)): leng=len(phone_book[i]) if leng
https://programmers.co.kr/learn/courses/30/lessons/42626 코딩테스트 연습 - 더 맵게 매운 것을 좋아하는 Leo는 모든 음식의 스코빌 지수를 K 이상으로 만들고 싶습니다. 모든 음식의 스코빌 지수를 K 이상으로 만들기 위해 Leo는 스코빌 지수가 가장 낮은 두 개의 음식을 아래와 같 programmers.co.kr #프로그래머스 더 맵게 def solution(scoville, K): import heapq answer = 0 heapq.heapify(scoville) leng=len(scoville) while scoville[0]1: x1=heapq.heappop(scoville) x2=heapq.heappop(scoville) new= x1+x2*2 he..
https://programmers.co.kr/learn/courses/30/lessons/42888 코딩테스트 연습 - 오픈채팅방 오픈채팅방 카카오톡 오픈채팅방에서는 친구가 아닌 사람들과 대화를 할 수 있는데, 본래 닉네임이 아닌 가상의 닉네임을 사용하여 채팅방에 들어갈 수 있다. 신입사원인 김크루는 카카오톡 오 programmers.co.kr #프로그래머스 오픈채팅방 def solution(record): answer = [] lst={} prompt=[] for line in record: s=list(map(str,line.split())) if s[0]!='Leave': lst[s[1]]=s[2] prompt.append(s) for line in prompt: if line[0]=='Enter..
https://programmers.co.kr/learn/courses/30/lessons/42578 코딩테스트 연습 - 위장 programmers.co.kr #프로그래머스 위장 def solution(clothes): answer = 1 lst={} for clothe in clothes: if clothe[1] in lst: lst[clothe[1]]+=1 else: lst[clothe[1]]=1 for val in lst.values(): answer*=(val+1) return (answer-1) 세트( '{}' )을 이용하여 문제를 해결하였다. def solution(clothes): from collections import Counter from functools import reduce c..
https://programmers.co.kr/learn/courses/30/lessons/42842 코딩테스트 연습 - 카펫 Leo는 카펫을 사러 갔다가 아래 그림과 같이 중앙에는 노란색으로 칠해져 있고 테두리 1줄은 갈색으로 칠해져 있는 격자 모양 카펫을 봤습니다. Leo는 집으로 돌아와서 아까 본 카펫의 노란색과 programmers.co.kr 간단한 수학문제이다. #프로그래머스 카펫 def solution(brown, yellow): for h in range(1,yellow+1): if yellow%h==0: w=yellow//h if w
https://programmers.co.kr/learn/courses/30/lessons/60057 코딩테스트 연습 - 문자열 압축 데이터 처리 전문가가 되고 싶은 "어피치"는 문자열을 압축하는 방법에 대해 공부를 하고 있습니다. 최근에 대량의 데이터 처리를 위한 간단한 비손실 압축 방법에 대해 공부를 하고 있는데, 문 programmers.co.kr #프로그래머스 문자열 압축 def solution(s): answer = 0 for i in range(1,(len(s)//2)+1): cnt=1 lst=[] j=0 previous='' while (j+i)1: lst.append(cnt-1) gain=0 for k in range(len(lst)): gain+=lst[k]*i-len(str(lst[k]..