Search
⌘K

Leetcode 3421. Find Students Who Improved

For each student and subject that have exams on at least two different dates, return the first and latest scores where the latest is higher than the first, ordered by student_id and subject. This is typically solved by grouping (or using window functions) to compare the score at the minimum and maximum exam_date per student-subject pair.


Question Timeline

See when this question was last asked and where, including any notes left by other candidates.

Comments

Your account is free and you can post anonymously if you choose.