일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- C++
- 동적계획법
- issue
- 알고리즘
- Flutter
- cos
- k8s
- 동적계획법과최단거리역추적
- 코드품앗이
- 코테
- Python
- cos pro 1급
- BAEKJOON
- 분할정복
- DFS
- 개발
- android
- AndroidStudio
- DART
- Algorithm
- cos pro
- 안드로이드스튜디오
- 파이썬
- django
- 백준
- 안드로이드
- vuejs
- DFS와BFS
- 코딩테스트
- codingtest
- Today
- Total
목록codingtest (62)
Development Artist

문제 유형 빈칸 난이도 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..