0596. Classes More Than 5 Students
https://leetcode.com/problems/classes-more-than-5-students
Description
There is a table courses
with columns: student and class
Please list out all classes which have more than or equal to 5 students.
For example, the table:
Should output:
Note:
The students should not be counted duplicate in each course.
ac
Last updated