728x90

알고리즘 57

[SQL] 1581. Customer Who Visited but Did Not Make Any Transactions (Easy)

join 세번째 문제https://leetcode.com/problems/customer-who-visited-but-did-not-make-any-transactions/description/?envType=study-plan-v2&envId=top-sql-50⬆️ 문제 전문 링크는 여기 Table: Visits+-------------+---------+| Column Name | Type |+-------------+---------+| visit_id | int || customer_id | int |+-------------+---------+visit_id is the column with unique values for this table.This table cont..

알고리즘 2025.01.07

[SQL] 1378. Replace Employee ID With The Unique Identifier (Easy)

조인 사용하는 문제로 넘어왔다.https://leetcode.com/problems/replace-employee-id-with-the-unique-identifier/submissions/1493012049/?envType=study-plan-v2&envId=top-sql-50⬆️ 문제 전문은 위 링크에서 Table: Employees+---------------+---------+| Column Name | Type |+---------------+---------+| id | int || name | varchar |+---------------+---------+id is the primary key (column with unique value..

알고리즘 2024.12.31

[SQL] 1757. Recyclable and Low Fat Products (Easy)

너어어어무 알고리즘 및 sql 에 손 떼고 있어서 (물론 회사 업무의 sql은 했었음)쉬운거 부터 하나 가져왔어요https://leetcode.com/problems/recyclable-and-low-fat-products/?envType=study-plan-v2&envId=top-sql-50⬆️문제 전문 Table: Products+-------------+---------+| Column Name | Type |+-------------+---------+| product_id | int || low_fats | enum || recyclable | enum |+-------------+---------+product_id is the primary key (colum..

알고리즘 2024.12.26

[프로그래머스 lv2] H-Index.java

https://programmers.co.kr/learn/courses/30/lessons/42747 코딩테스트 연습 - H-Index H-Index는 과학자의 생산성과 영향력을 나타내는 지표입니다. 어느 과학자의 H-Index를 나타내는 값인 h를 구하려고 합니다. 위키백과1에 따르면, H-Index는 다음과 같이 구합니다. 어떤 과학자가 발표 programmers.co.kr 어떤 과학자가 발표한 논문 n편 중, h번 이상 인용된 논문이 h편 이상이고 나머지 논문이 h번 이하 인용되었다면 h의 최댓값이 이 과학자의 H-Index이다. 어떤 과학자가 발표한 논문의 인용 횟수를 담은 배열 citations가 매개변수로 주어질 때, 이 과학자의 H-Index를 return 하면 되는 문제이다. 입출력의 예는..

알고리즘 2022.05.06
728x90
반응형