You are viewing a single comment's thread. Return to all comments →
what does the [1] after split() do??
.split()returns list. [n] returns n-th element of that list.
>>> 'hello world'.split() ['hello', 'world'] >>> 'hello world'.split()[1] 'world'
It's a shortcut of skipping the first input (number of subjects) and going straight for the number of students
Updated solution is here
https://www.thecscience.com/2021/08/hackerrank-Zipped-in-python-problem-solution.html
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
Zipped!
You are viewing a single comment's thread. Return to all comments →
what does the [1] after split() do??
.split()returns list. [n] returns n-th element of that list.
It's a shortcut of skipping the first input (number of subjects) and going straight for the number of students
Updated solution is here
https://www.thecscience.com/2021/08/hackerrank-Zipped-in-python-problem-solution.html