From 0118d6be6087bc7555b43ef37d9e261780faceda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Antonio=20Chac=C3=B3n=20Guti=C3=A9rrez?= <138903866+joseantoniochacon@users.noreply.github.com> Date: Thu, 6 Jun 2024 23:34:07 -0600 Subject: [PATCH] Create README - LeetHub --- 1729-find-followers-count/README.md | 46 +++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 1729-find-followers-count/README.md diff --git a/1729-find-followers-count/README.md b/1729-find-followers-count/README.md new file mode 100644 index 0000000..9ceb153 --- /dev/null +++ b/1729-find-followers-count/README.md @@ -0,0 +1,46 @@ +
Table: Followers
+-------------+------+ +| Column Name | Type | ++-------------+------+ +| user_id | int | +| follower_id | int | ++-------------+------+ +(user_id, follower_id) is the primary key (combination of columns with unique values) for this table. +This table contains the IDs of a user and a follower in a social media app where the follower follows the user.+ +
+ +
Write a solution that will, for each user, return the number of followers.
+ +Return the result table ordered by user_id
in ascending order.
The result format is in the following example.
+ ++
Example 1:
+ +Input: +Followers table: ++---------+-------------+ +| user_id | follower_id | ++---------+-------------+ +| 0 | 1 | +| 1 | 0 | +| 2 | 0 | +| 2 | 1 | ++---------+-------------+ +Output: ++---------+----------------+ +| user_id | followers_count| ++---------+----------------+ +| 0 | 1 | +| 1 | 1 | +| 2 | 2 | ++---------+----------------+ +Explanation: +The followers of 0 are {1} +The followers of 1 are {0} +The followers of 2 are {0,1} ++