Python - CodeSignal Correct Scholarships 42

preview_player
Показать описание
Continuation of the CodeSignal Arcade Python coding exercises

Рекомендации по теме
Комментарии
Автор

Another solution would be:

return == len(scholarships) and == len(bestStudents) and len(scholarships) != len(allStudents)

ahmadkelany
Автор

return and \
and \
len(scholarships) != len(allStudents)
Will work too.

nishantha