Última actividad 1690916160

gistfile1.txt Sin formato
1if k == 0:
2 return []
3arr.sort()
4ans = arr[-k:]
5return ans
6