Skip to content

Commit

Permalink
Time: 530 ms (99.13%), Space: 0B (100.00%) - LeetHub
Browse files Browse the repository at this point in the history
  • Loading branch information
joseantoniochacon committed Jun 7, 2024
1 parent 0118d6b commit 6b5f9dc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 1729-find-followers-count/1729-find-followers-count.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Write your MySQL query statement below
SELECT user_id, COUNT(follower_id) AS followers_count FROM Followers GROUP BY user_id ORDER BY user_id;

0 comments on commit 6b5f9dc

Please sign in to comment.