Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Vue
- Flutter
- Algorithm
- 코드품앗이
- AndroidStudio
- DART
- 코테
- cos pro 1급
- DFS와BFS
- DFS
- 동적계획법과최단거리역추적
- 안드로이드
- android
- 백준
- 코딩테스트
- vuejs
- C++
- BAEKJOON
- Python
- codingtest
- 동적계획법
- 분할정복
- 파이썬
- django
- 개발
- 알고리즘
- issue
- cos
- 안드로이드스튜디오
- cos pro
Archives
- Today
- Total
목록밥먹고 머리자르고 python (1)
Development Artist
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/wMVGq/btrunPhpWEW/pCQVK67tPTLNAxfx7MDh10/img.png)
문제 유형 빈칸 난이도 easy Note 1. 파이썬의 Class, def, self Code # -*- coding: utf-8 -*- # UTF-8 encoding when using korean class Customer: def __init__(self, id, time, num_of_people): self.id = id self.time = time self.num_of_people = num_of_people class Shop: def __init__(self): self.reserve_list = [] def reserve(self, customer): self.reserve_list.append(customer) return True class HairShop(Shop): def __i..
Algorithm/COS
2022. 2. 25. 12:48