
https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [201p 떡볶이 떡 만들기] import sys n, m = map(int, sys.stdin.readline().rstrip().split()) height = list(map(int, sys.stdin.readline().rstrip().split()))[:n] def binary_search(array, target, start, end): re..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [197p 부품 찾기] import sys n = int(sys.stdin.readline().rstrip()) stores = list(map(int, sys.stdin.readline().rstrip().split()))[:n] m = int(sys.stdin.readline().rstrip()) parts = list(map(int, sys.std..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [182p 두 배열의 원소 교체] import sys n, k = map(int, sys.stdin.readline().rstrip().split()) first = list(map(int, sys.stdin.readline().rstrip().split()))[:n] second = list(map(int, sys.stdin.readline().rst..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [180p 성적이 낮은 순서로 학생 출력하기] import sys import copy n = int(sys.stdin.readline().rstrip()) array = [] for _ in range(n): name, score = sys.stdin.readline().rstrip().split() array.append((name, int(scor..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [178p 위에서 아래로] import sys import copy n = int(sys.stdin.readline().rstrip()) numbers = [int(sys.stdin.readline().rstrip()) for _ in range(n)] # 선택 정렬 def selection_sort(array): for i in range(n): ma..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [152p 미로 탈출] import sys from collections import deque n, m = map(int, sys.stdin.readline().rstrip().split()) graph = [list(map(int, sys.stdin.readline().rstrip()))[:m] for _ in range(n)] # 방문 여부 vis..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [149p 음료수 얼려 먹기] import sys n, m = map(int, sys.stdin.readline().rstrip().split()) graph = [ list(map(int, sys.stdin.readline().rstrip()))[:m] for _ in range(n) ] # 방문 확인 visited = [[False] * m for ..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [118p 왕실의 나이트] import sys n, m = map(int, sys.stdin.readline().rstrip().split()) x, y, direction = map(int, sys.stdin.readline().rstrip().split()) graph = [ list(map(int, sys.stdin.readline().rstrip..

https://www.hanbit.co.kr/store/books/look.php?p_code=B8945183661 이것이 취업을 위한 코딩 테스트다 with 파이썬 IT 취준생이라면 누구나 가고 싶어 하는 카카오, 라인, 삼성전자의 2016년부터 2020년까지의 코딩 테스트와 알고리즘 대회의 기출문제를 엄선하여 수록하였다. www.hanbit.co.kr [115p 왕실의 나이트] import sys position = sys.stdin.readline().rstrip() # 현재 나이트 위치 x = int(position[1]) y = ord(position[0]) - ord('a') + 1 # 나이트가 이동할 수 있는 방향 dx = [-1, -2, -2, -1, 1, 2, 2, 1] dy = [2, ..
- Total
- Today
- Yesterday
- 2019 카카오 개발자 겨울 인턴십
- 자료구조
- bfs
- 저장소
- 코틀린
- binary search
- 알고리즘
- 단계별로 문제풀이
- OS
- Python
- 정렬
- 깃
- 구현
- 백준
- 그래프
- spring boot 2.3.1
- DP
- 열혈강의
- 그리디
- BOJ
- 2020 카카오 인턴십
- Algorihtm
- 이것이 코딩테스트다
- programmers
- repository
- Algorithm
- dfs
- git
- Idempotent
- Summer/Winter Coding(~2018)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |