All test cases done except for one and that one had Runtime error..
I am not one-liner, because i am beginner..
Is there any solution for my level?
Here is my code:
n = int(input())
phonelist = dict()
for i in range(n):
user = input().strip().split()
phonelist[user[0]] = user[1]
for i in range(n):
ask = str(input())
if ask in phonelist:
print(f"{ask}={phonelist[ask]}")
else:
print("Not found") #RUNTIME Error at case 1
Problem Statement : HERE
Problem Test Case(runtime error) : HERE
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…