rubus0304 님의 블로그
[데이터분석] 코드카타 81~ 84 본문
81. Invalid Tweets
https://leetcode.com/problems/invalid-tweets/
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.
글자 수 세기 (Char_length)
Char_length
82. Replace Employee ID with the unique identifier
https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/description/
Write a solution to show the unique ID of each user, If a user does not have a unique ID replace just show null.
Return the result table in any order.
The result format is in the following example.
83. Product Sales Analysis I
https://leetcode.com/problems/product-sales-analysis-i/
Write a solution to report the product_name, year, and price for each sale_id in the Sales table.
Return the resulting table in any order.
The result format is in the following example.
84. customer who visited but did not make any transations
https://leetcode.com/problems/customer-who-visited-but-did-not-make-any-transactions/description/
Write a solution to find the IDs of the users who visited without making any transactions and the number of times they made these types of visits.
Return the result table sorted in any order.
The result format is in the following example.
transaction_id에 없는 것 구하기
(Wrong answer)
(Accepted)
아니 Null값이 table에 안 적혀 있길래 어떻게 구하는거지 했는데 그냥 is null 로 조건 걸면 되는 것이었다
'Data Analyst > daily' 카테고리의 다른 글
[데이터 분석] 코드카타 86 (0) | 2024.10.23 |
---|---|
[데이터 분석] 코드카타 85 (0) | 2024.10.22 |
[데이터분석] 코드카타 Lv.6 77~80 (2) | 2024.10.18 |
[데이터분석] 코드카타 (Lv.5~ Lv.6) (1) | 2024.10.17 |
[데이터분석] 코드카타 (Lv. 5~) (5) | 2024.10.16 |