From 3afe15b5b5e50de138aa4cfda9169d2eea92a586 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, 30 May 2024 20:27:29 -0600 Subject: [PATCH] Create README - LeetHub --- 1683-invalid-tweets/README.md | 42 +++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 1683-invalid-tweets/README.md diff --git a/1683-invalid-tweets/README.md b/1683-invalid-tweets/README.md new file mode 100644 index 0000000..ffab332 --- /dev/null +++ b/1683-invalid-tweets/README.md @@ -0,0 +1,42 @@ +
Table: Tweets
+----------------+---------+ +| Column Name | Type | ++----------------+---------+ +| tweet_id | int | +| content | varchar | ++----------------+---------+ +tweet_id is the primary key (column with unique values) for this table. +This table contains all the tweets in a social media app. ++ +
+ +
Write a solution to find the IDs of the invalid tweets. The tweet is invalid if the number of characters used in the content of the tweet is strictly greater than 15
.
Return the result table in any order.
+ +The result format is in the following example.
+ ++
Example 1:
+ +Input: +Tweets table: ++----------+----------------------------------+ +| tweet_id | content | ++----------+----------------------------------+ +| 1 | Vote for Biden | +| 2 | Let us make America great again! | ++----------+----------------------------------+ +Output: ++----------+ +| tweet_id | ++----------+ +| 2 | ++----------+ +Explanation: +Tweet 1 has length = 14. It is a valid tweet. +Tweet 2 has length = 32. It is an invalid tweet. ++