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.
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;
}
}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Grading Students
You are viewing a single comment's thread. Return to all comments →
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;
}