• + 0 comments
    def gradingStudents(grades):
        # Write your code here
        return [ math.ceil(g / 5) * 5 if (g >= 38 and (math.ceil(g / 5) * 5 - g) < 3) else g for g in grades ]