Your question is Find Lowest Class Average Subject. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
Nagarro's assessment platform stores marks for N students across M subjects. Ms. Margaret must exclude the single subject with the lowest class average for every student, then calculate each student's total across the remaining subjects.
Implement a function that returns the adjusted total for every student. The lowest class average is determined by the sum of marks in each subject because every subject has marks for the same N students. If multiple subjects have the same lowest average, exclude the subject with the smallest column index.
marks, a non-empty matrix of integers with dimensions N x M, where marks[i][j] is the mark earned by student i in subject j.N integers. The value at index i is the sum of student i's marks in every subject except the selected lowest-average subject.def adjusted_totals(marks):