LeetCode Solution, Easy, 1729. Find Followers Count
1729. Find Followers Count
題目敘述
SQL Schema >
Create table If Not Exists Followers(user_id int, follower_id int)
Truncate table Followers
insert into Followers (user_id, follower_id) values ('0', '1')
insert into Followers (user_id, follower_id) value...
blog.taiwolskit.com2 min read