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
|
4082 Discussions
|
Please Login in order to post a comment
Good challenge. Also, I found this tool that gives a very detailed analysis of my resume and suggests amazing improvements: www.autointerviewai.com/ats-score . You guys might wanna check it out!
public static List gradingStudents(List grades) { // Write your code here List finelRes = new ArrayList(); for (int i=0 ; i 2){ finelRes.add(grades.get(i)+(5-grades.get(i)% 5));
}else{ finelRes.add(grades.get(i)); } } return finelRes;
}