일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vuejs
- 파이썬
- 코딩테스트
- cos pro
- 개발
- DART
- 백준
- cos pro 1급
- 코테
- Flutter
- 안드로이드
- android
- C++
- 동적계획법
- 동적계획법과최단거리역추적
- codingtest
- Python
- DFS
- django
- issue
- AndroidStudio
- 코드품앗이
- 분할정복
- BAEKJOON
- 알고리즘
- Algorithm
- Vue
- DFS와BFS
- 안드로이드스튜디오
- cos
- Today
- Total
목록cos (59)
Development Artist
문제 유형 한줄 수정 난이도 easy Note 1. 계단은 0칸 부터, 마이너스가 없다. 가위바위보에서 졌다고 계속 내려갈 수 없다. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def func(record): if record == 0: return 1 elif record == 1: return 2 return 0 def solution(recordA, recordB): cnt = 0 for i in range(len(recordA)): if recordA[i] == recordB[i]: continue elif recordA[i] == func(recordB[i]): cnt = cnt + 3 else: if cnt > 0: cnt..
문제 유형 한줄 수정 난이도 easy Note 1. 후보 번호 = idx Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(N, votes): vote_counter = [0 for i in range(N+1)] for i in votes: vote_counter[i] += 1 max_val = max(vote_counter) print(vote_counter) answer = [] for idx in range(1, N + 1): if vote_counter[idx] == max_val: answer.append(idx) return answer N1 = 5 votes1 = [1,5,4,3,2,5,2,5,5,4] r..
문제 유형 빈칸 난이도 easy Note Nothing Code def solution(arrA, arrB): arrA_idx = 0 arrB_idx = 0 arrA_len = len(arrA) arrB_len = len(arrB) answer = [] while arrA_idx < arrA_len and arrB_idx < arrB_len: if arrA[arrA_idx] < arrB[arrB_idx]: answer.append(arrA[arrA_idx]) arrA_idx += 1 else: answer.append(arrB[arrB_idx]) arrB_idx += 1 while arrA_idx < arrA_len: answer.append(arrA[arrA_idx]) arrA_idx += 1 whil..
문제 유형 코딩 난이도 (주관적인) easy Note 1. dx, dy로 나이트의 이동 경우를 고정하기. bfs에서 자주 쓰이는 방식인데, 원할한 순회를 위해 이런식으로 이동 값을 설정. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean var_N = 8 dx = [1, 2, 2, 1, -1, -2, -2, -1] dy = [-2, -1, 1, 2, 2, 1, -1, -2] def solution(pos): answer = 0 start_row = int(pos[1]) start_col = ord(pos[0])-65 for i in range(var_N): now_row = start_row + dx[i] now_col = start_col..
문제 유형 코딩 난이도 hard Note 1. 핵심 코드 : start, end = ori + 1, ori + 2 * (n - i) - 1 와 ori = end. nxn에서 왼쪽 위를 start로 하면, 오른쪽 아래를 end로 잡고, 마찬가지로 오른쪽 아래를 start로 하면, 왼쪽 위를 end로 잡는다. 1.1. n = 3, i = 0 일때 start : 1, end : 5 i = 1 일때 start : 6, end : 8 i = 2 일때 start : 9, end : 9 핵심코드를 떠올릴 수 있어야 한다. 즉, 안되면 암기... Code def solution(n): answer = 0 ori = 0 for i in range(n): start, end = ori + 1, ori + 2 * (n - ..
문제 유형 코딩 난이도 normal Note 1. digit을 divisor로 설정. 1로시작하여, 10씩 곱해 간다. (1, 10, 100, 1000, 10000.) 기존의 숫자를 divisor로 나눈다. 그리고 10으로 나눈 나머지가 해당 자리수의 숫자가 된다. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def solution(num): answer = num + 1 digit = 1 while answer // digit % 10 == 0: answer += digit digit *= 10 return answer num = 9949999; ret = solution(num) print("solution 함수의 반환 값은", r..
문제 유형 빈칸 난이도 easy Note Nothing Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean def func_a(numA, numB, exp): if exp == '+': return numA + numB elif exp == '-': return numA - numB elif exp == '*': return numA * numB def func_b(exp): for index, value in enumerate(exp): if value == '+' or value == '-' or value == '*': return index def func_c(exp, idx): numA = int(exp[:idx]) numB = in..
문제 유형 빈칸 난이도 easy Note 1. 해밍 디스턴스(Hamming distance)가 무엇인지. Code def func_a(string, length): padZero = "" padSize = length - len(string) for i in range(padSize): padZero += "0" return padZero + string def solution(binaryA, binaryB): max_length = max(len(binaryA), len(binaryB)) binaryA = func_a(binaryA, max_length) binaryB = func_a(binaryB, max_length) hamming_distance = 0 for i in range(max_lengt..
문제 유형 빈칸 난이도 easy Note 1. 파이썬에서 Class와 def를 어떻게 정의하는지. 2. self의 용도가 무엇인지. Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean from abc import * class DeliveryStore(metaclass=ABCMeta): @abstractmethod def set_order_list(self, order_list): pass @abstractmethod def get_total_price(self): pass class Food: def __init__(self, name, price): self.name = name self.price = price class PizzaSto..