• + 0 comments

    we can use sets in place Dictionary and then save converting steps like:

    scorelist = sorted(set(scorelist))[1]

    This should reduce the steps and will optimise the code.