We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Grading Students
Grading Students
Sort by
recency
|
4060 Discussions
|
Please Login in order to post a comment
def gradingStudents(grades): """ Round grades according to the following rules: 1. If grade < 38, no rounding (failing grade) 2. If difference between grade and next multiple of 5 is < 3, round up 3. Otherwise, keep original grade """ result = []
Python Solution:`
C++ solution
Java Solution
}
java 8 Solution