Skip to content

Commit 083883e

Browse files
add 1683
1 parent 889a6c7 commit 083883e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Diff for: README.md

+1
Original file line numberDiff line numberDiff line change
@@ -1074,6 +1074,7 @@ _If you like this project, please leave me a star._ ★
10741074
| # | Title | Solutions | Video | Difficulty | Tag
10751075
|-----|----------------|---------------|---------------|---------------|-------------
10761076
|1693|[Daily Leads and Partners](https://leetcode.com/problems/daily-leads-and-partners/)|[Solution](../master/database/_1693.sql) || Easy |
1077+
|1683|[Invalid Tweets](https://leetcode.com/problems/invalid-tweets/)|[Solution](../master/database/_1683.sql) || Easy |
10771078
|1607|[Sellers With No Sales](https://leetcode.com/problems/sellers-with-no-sales/)|[Solution](../master/database/_1607.sql) || Easy |
10781079
|1581|[Customer Who Visited but Did Not Make Any Transactions](https://leetcode.com/problems/customer-who-visited-but-did-not-make-any-transactions/)|[Solution](../master/database/_1581.sql) || Easy |
10791080
|1543|[Fix Product Name Format](https://leetcode.com/problems/fix-product-name-format/)|[Solution](../master/database/_1543.sql) || Easy |

Diff for: database/_1683.sql

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
--# Write your MySQL query statement below
2+
select tweet_id from Tweets where length(content) > 15;

0 commit comments

Comments
 (0)