NESTED LISTS | HACKERRANK | PYTHON | LANGUAGE PROFICIENCY | SOLUTION | LOGIC

preview_player
Показать описание
This video contains solution to HackerRank " Nested Lists " problem .But remember...before looking at the solution you need to try the problem at once for your logic building!
Рекомендации по теме
Комментарии
Автор

This video contains solution to HackerRank " Nested Lists " problem .But remember...before looking at the solution you need to try the problem at once for your logic building!

WhimsicallyMundane
Автор

Thank you so much, Sir! Amazing short and crisp logic!!!

voltronex
Автор

Thank you so much sir!! Amazing explination

RahulSharma-clus
Автор

i learn lot of things from this code thank so much sir

saiprasad
Автор

hey mate i am getting an error can you share the code as a g drive it is showing error in for i, j in marksheet: there is some problem in ':' plz reply

siddarthvijayanand
Автор

what if ....there are more than two students with lowest marks?

praveshrikhari
Автор

Hey bud, great video. Helped me a lot. Thanks, keep it up.

hakuna
Автор

Hello! Great explaination! May I ask some help with my code?
if __name__ == '__main__':
namenscore= []
for _ in range(int(input())):
name = input()
score = float(input())
namenscore.append([name, score])
namenscore.sort(key= lambda x: x[1])
aaa = namenscore[1][1]
namenscore.sort(key= lambda x: x[0])
for i in namenscore:
if i[1] == aaa:
print (i[0])

it works with almost all test cases except for 2 and 3, could you help me understand why?

alessiailas
Автор

Can you show the inner codes in calendar module in python. Pls

amanray