Created
April 27, 2020 11:18
-
-
Save serbirjr/45015498e95f3eb32ea229bb23a7fa40 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.codewars.com/kata/5b16490986b6d336c900007d/train/python | |
def my_languages(results): | |
newlang = [] | |
for key in results.keys(): | |
if results[key] >= 60: | |
newlang.append(key) | |
newlang.sort(reverse=True) | |
return newlang |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment