GRADING STUDENTS
Given the initial value of each of Sam's students, write code to automate the rounding process.
EXPLANATION CODE:
1) This function takes as input a list of grades and outputs a new list with the grades rounded in accordance with a predetermined rule. Grades that fall below 38 are not rounded. A grade is rounded up to the next multiple of 5 if it is at least 38 and the gap between it and the subsequent multiple of 5 is less than 3. If not, there is no rounding of the grade.
2) The function iterates through each grade in the input list using a for loop. If a grade is less than 38, it is skipped. If it is at least 38, the difference between the grade and the next multiple of 5 is computed using the modulo operator (%), and stored in a variable called "diff". If diff is less than 3, the grade is rounded up to the next multiple of 5 by adding "diff" to the grade. Finally, the new grade is stored back in the input list at the same index.
3) The function returns the updated list with the grades rounded in accordance with the rule after going over every grade in the input list.
#hackerrank #prepare #algorithms #implementation #grading #students #csharp #csharpprogramming #education #coding #programming #easy #difficulty #reading #arithmetic #learntocode #tutorial #problemsolving #algorithmic #asmr #asmrtyping
Contents:
0:00 - Reading
2:50 - Solving
4:20 - Explaining
Other Videos By One Person Studio
2023-05-05 | SONIC #shorts #art #drawing |
2023-05-05 | GIRL XXV #shorts #art #drawing |
2023-05-05 | SCOOBY-DOO #shorts #art #drawing |
2023-05-05 | RICK #shorts #art #drawing |
2023-05-05 | CREDIT CARD VERIFIER (LUHN’S ALGORITHM) |
2023-05-05 | BUCKET #shorts #blender #animation |
2023-05-04 | ROD WAVE #shorts #art #drawing |
2023-05-04 | APPLE AND ORANGE |
2023-05-04 | MEWTWO #shorts #art #drawing |
2023-05-04 | RED #shorts #art #drawing |
2023-05-04 | GRADING STUDENTS |
2023-05-04 | MOTORCYCLE II #shorts #blender #animation |
2023-05-04 | SKETCHBOOK TOUR PART CXV #shorts #art #drawing |
2023-05-03 | CATERPIE #shorts #art #drawing |
2023-05-03 | CATERPIE #shorts #art #drawing |
2023-05-03 | BOY XXXV #shorts #art #drawing |
2023-05-03 | MERGE TWO SORTED LISTS |
2023-05-03 | PATRICK STAR #shorts #art #drawing |
2023-05-03 | MOTORCYCLE #shorts #blender #animation |
2023-05-03 | VALID PARENTHESES |
2023-05-03 | SKETCHBOOK TOUR PART CXIV #shorts #art #drawing |