leetcodeSolution to some Leetcode problems written in C++ |
git clone git://git.dimitrijedobrota.com/leetcode.git |
Log | Files | Refs | README | LICENSE |
1729.sql (107B)
0 SELECT user_id, COUNT(follower_id) AS followers_count
1 FROM Followers
2 GROUP BY user_id
3 ORDER BY user_id ASC