记录一下历时很久的阿里暑期实习面试,3.11投递,5.9收到意向
interface examScore { // 学号 id: string; // 课程代号 course: string; // 成绩 score: number; } // 根据学生各科考试成绩,输出每个学生的总成绩。输出格式为: // {{id: '1', total: 100 }, {id: '2', total: 101}} const examScores = [ { id: '1', course: 'cs001', socre: 90, }, { id: '1', course: 'cs002', socre: 79, }, { id: '2', course: 'cs002', socre: 57, }, { id: '3', course: 'cs001', socre: 85, }, { id: '2', course: 'cs001', socre: 74, }, ]