-
Notifications
You must be signed in to change notification settings - Fork 0
/
phone_book.py
37 lines (31 loc) · 1.05 KB
/
phone_book.py
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
32
33
34
35
36
# python3
class Query:
def __init__(self, query):
self.type = query[0]
self.number = int(query[1])
if self.type == 'add':
self.name = query[2]
def read_queries():
n = int(input())
return [Query(input().split()) for i in range(n)]
def write_responses(result):
print('\n'.join(result))
def process_queries(queries):
result = []
# Keep list of all existing (i.e. not deleted yet) contacts.
contacts = {}
for cur_query in queries:
if cur_query.type == 'add':
# if we already have contact with such number,
# we should rewrite contact's name
contacts[cur_query.number] = cur_query.name
elif cur_query.type == 'del':
if cur_query.number in contacts:
contacts.pop(cur_query.number)
else:
response = 'not found'
response = contacts.get(cur_query.number, response)
result.append(response)
return result
if __name__ == '__main__':
write_responses(process_queries(read_queries()))