Find the Runner-Up Score!

  • + 0 comments

    You have an error in code, at least in Python3 version.

    print max(lis) is wrong syntax, instead of it you should do print(max(lis))

    Otherwise, all great! Cheers!