LeetCode_Study_Plan
-
724. Find Pivot Index javaLeetCode_Study_Plan/LeetCode 75 2022. 9. 25. 17:13
https://leetcode.com/problems/find-pivot-index/?envType=study-plan&id=level-1 Find Pivot Index - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution { public int pivotIndex(int[] nums) { int pivot = 0; int total_sum = Arrays.stream(nums).sum(); for(int i = 0; i < nums.le..
-
1480. Running Sum of 1d Array javaLeetCode_Study_Plan/LeetCode 75 2022. 9. 25. 17:01
https://leetcode.com/problems/running-sum-of-1d-array/?envType=study-plan&id=level-1 Running Sum of 1d Array - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com class Solution { public int[] runningSum(int[] nums) { Integer[] ans = new Integer[nums.length]; ans[0] = nums[0]; for (int..
-
183. Customers Who Never Order mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 16:01
https://leetcode.com/problems/customers-who-never-order/?envType=study-plan&id=sql-i Customers Who Never Order - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select c.name as Customers from customers as c left join orders as o on c.Id = o.customerId where o.id is null;
-
584. Find Customer Referee mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:49
https://leetcode.com/problems/find-customer-referee/?envType=study-plan&id=sql-i Find Customer Referee - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com SQL에서는 비교 연산자에서는 NULL이 배제된다. (반면 논리 연산자에서는 NULL이 배제되지 않는다.) # Write your MySQL query statement below select name from customer wh..
-
1757. Recyclable and Low Fat Products mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:43
https://leetcode.com/problems/recyclable-and-low-fat-products/ Recyclable and Low Fat Products - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select product_id from products where low_fats = 'Y' and recyclable = 'Y';
-
595. Big Countries mysqlLeetCode_Study_Plan/SQL 2022. 9. 25. 15:40
https://leetcode.com/problems/big-countries/?envType=study-plan&id=sql-i Big Countries - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com select name, population, area from World where area >= 3000000 or population >= 25000000;