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 | 29 | 30 |
Tags
- BAEKJOON
- 파이썬
- AndroidStudio
- django
- DART
- android
- Algorithm
- codingtest
- issue
- vuejs
- DFS와BFS
- Python
- cos pro 1급
- 개발
- 코딩테스트
- 동적계획법
- 코테
- cos
- DFS
- C++
- Flutter
- 알고리즘
- 분할정복
- 안드로이드
- 동적계획법과최단거리역추적
- 코드품앗이
- cos pro
- 안드로이드스튜디오
- 백준
- Vue
Archives
- Today
- Total
목록밥먹고 머리자르고 python (1)
Development Artist
[COS Pro 1급, Python] 3차 10번 : 밥먹고 머리자르고
문제 유형 빈칸 난이도 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