Skip to content

Commit 50ee18f

Browse files
authored
Update README.md
1 parent 1e22448 commit 50ee18f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Using API calls to get all leetcode questions and store its like/dislike counts
1010
2. start querying in sqlite
1111

1212
## check the data
13-
### highest like/dislike ratio question without premium limitation
13+
### highest like/dislike ratio questions without premium limitation
1414
```
1515
SELECT questionFrontendId, title, isPaidOnly, difficulty, (likes / dislikes) as likeDislike_ratio, likes, dislikes
1616
FROM questions WHERE isPaidOnly = 0 order by likeDislike_ratio DESC LIMIT 200;

0 commit comments

Comments
 (0)