일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 가상메모리
- 다이나믹 프로그래밍
- 구현
- dict
- DP
- programmers
- 운영체제
- 코딩테스트
- level1
- 스택
- dfs
- 프로그래머스
- python
- 파이썬
- level3
- 브루트포스
- level2
- BOJ
- 딕셔너리
- 그리디
- 힙
- BFS
- 재귀
- level0
- N과M
- MYSQL
- 백준
- 가상메모리 관리
- 수학
- 다익스트라
- Today
- Total
목록파이썬 (259)
동캄의 코딩도장
https://school.programmers.co.kr/learn/courses/30/lessons/120907 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #프로그래머스 OX퀴즈 def solution(quiz): answer = [] for q in quiz: values=list(map(str,q.split())) if values[1]=='+': result=int(values[0])+int(values[2]) else: result=int(values[0])-int(values[2]) if result==int(values[4]): answ..
https://school.programmers.co.kr/learn/courses/30/lessons/120808 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr #프로그래머스 분수의 덧셈 def solution(numer1, denom1, numer2, denom2): lcm=LCM(denom1,denom2) snum=numer1*(lcm//denom1)+numer2*(lcm//denom2) gcd=GCD(snum,lcm) answer = [snum//gcd,lcm//gcd] return answer def GCD(x,y): while(y): x,y=y..
https://school.programmers.co.kr/learn/courses/30/lessons/120923 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr # 프로그래머스 연속된 수의 합 import math def solution(num, total): quo = total/num if num % 2 == 1: answer = [k for k in range(math.floor(quo)-(num//2), math.ceil(quo)+(num//2)+1)] else: answer = [k for k in range((math.floor(quo)-(n..
https://school.programmers.co.kr/learn/courses/30/lessons/120866 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr # 프로그래머스 안전지대 r = [1, 1, 1, 0, -1, -1, -1, 0] c = [-1, 0, 1, 1, 1, 0, -1, -1] def solution(board): answer = 0 n = len(board) for i in range(n): for j in range(n): if board[i][j] == 1: for k in range(8): I = r[k]+i J = c[k]..
https://school.programmers.co.kr/learn/courses/30/lessons/120876 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr # 프로그래머스 겹치는 선분의 길이 def solution(lines): answer = 0 lines.sort() curr = -101 for i in range(len(lines)): end = lines[i][1] for j in range(i+1, len(lines)): start = lines[j][0] if start < end: end_ = min(end, lines[j][1]) c..
https://school.programmers.co.kr/learn/courses/30/lessons/120875 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr # 프로그래머스 평행 def solution(dots): answer = 0 x1, y1 = dots[0] x2, y2 = dots[1] x3, y3 = dots[2] x4, y4 = dots[3] if ((y2-y1)/(x2-x1) == (y4-y3)/(x4-x3)): answer = 1 elif (((y2-y3)/(x2-x3) == (y4-y1)/(x4-x1))): answer = 1 eli..