본문 바로가기

LeetCode

(91)
[LeetCode] - 1365. How Many Numbers Are Smaller Than The Current Number LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "How Many Numbers Are Smaller Than The Current Number" 문제입니다.--> https://leetcode.com/problems/how-many-numbers-are-smaller-than-the-current-number/description/  문제 : Given the array nums, for each nums[i] find out how many numbers in the array are s..
[LeetCode] - 896. Monotonic Array LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Monotonic Array" 문제입니다.--> https://leetcode.com/problems/monotonic-array/description/  문제 : An array is monotonic if it is either monotone increasing or monotone decreasing.An array nums is monotone increasing if for all i An array nums is monotone ..
[LeetCode] - 349. Intersection of Two Arrays LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Intersection of Two Arrays" 문제입니다.--> https://leetcode.com/problems/intersection-of-two-arrays/description/  문제 : Given two integer arrays nums1 and nums2, return an array of their intersection .Each element in the result must be unique and you may ..
[LeetCode] - 2706. Buy Two Chocolates LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Buy Two Chocolates" 문제입니다.--> https://leetcode.com/problems/buy-two-chocolates/description/  문제 : You are given an integer array prices representing the prices of various chocolates in a store.You are also given a single integer money, which represe..
[LeetCode] - 961. N-Repeated Element in Size 2N Array LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "N-Repeated Element in Size 2N Array" 문제입니다.--> https://leetcode.com/problems/n-repeated-element-in-size-2n-array/description/  문제 : You are given an integer array nums with the following properties :nums.length == 2 * n.nums contains n + 1 unique el..
[LeetCode] - 867. Transpose Matrix LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Transpose Matrix" 문제입니다.--> https://leetcode.com/problems/transpose-matrix/description/  문제 : Given a 2D integer array matrix, return the transpose of matrix.The transpose of a matrix is the matrix flipped over its main diagonal, switching the matri..
[LeetCode] - 728. Self Dividing Numbers LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Self Dividing Numbers" 문제입니다.--> https://leetcode.com/problems/self-dividing-numbers/description/  문제 : A self-dividing number is a number that is divisible by every digit it contains.For example, 128 is a self-dividing number because 128 % 1 == 0, ..
[LeetCode] - 657. Robot Return to Origin LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Robot Return to Origin" 문제입니다.--> https://leetcode.com/problems/robot-return-to-origin/description/  문제 : There is a robot starting at the position (0, 0), the origin, on a 2D plane.Given a sequence of its moves, judge if this robot ends up at (0, 0..