You are viewing a single comment's thread. Return to all comments →
had we used
n,m,p = map(int, input().split(' '))
This shows RUNTIME ERROR. Now while we use this code:
nums = tuple(map(int, input().split(' ')))
This runs perfectly. What difference will this be making during runtime?
Seems like cookies are disabled on this browser, please enable them to open this website
Zeros and Ones
You are viewing a single comment's thread. Return to all comments →
had we used
This shows RUNTIME ERROR. Now while we use this code:
This runs perfectly. What difference will this be making during runtime?