본문 바로가기

LeetCode

(91)
[LeetCode] - 4. Median of Two Sorted Arrays LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '어려움 (Hard)' 단계인 "Median of Two Sorted Arrays" 문제입니다.--> https://leetcode.com/problems/median-of-two-sorted-arrays/description/ 문제 : Given two sorted arrays nums1 and nums2 of size m and n respectively, return the median of the two sorted arrays.The overall run time..
[LeetCode] - 20. Valid Parentheses LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Valid Parentheses" 문제입니다.--> https://leetcode.com/problems/valid-parentheses/ 문제 : Given a string s containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.An input string is valid if : Open brackets mu..
[LeetCode] - 53. Maximum Subarray LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '중간 (Medium)' 단계인 "Maximum Subarray" 문제입니다.--> https://leetcode.com/problems/maximum-subarray/description/ 문제 : Given an integer array nums, find the subarray with the largest sum, and return its sum.Example 1 : Input : nums = [-2,1,-3,4,-1,2,1,-5,4]Output : 6Explan..
[LeetCode] - 75. Sort Colors LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '중간 (Medium)' 단계인 "Sort Colors" 문제입니다.--> https://leetcode.com/problems/sort-colors/description/ 문제 :Given an array nums with n objects colored red, white, or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, ..
[LeetCode] - 74. Search a 2D Matrix LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '중간 (Medium)' 단계인 "Search a 2D Matrix" 문제입니다.--> https://leetcode.com/problems/search-a-2d-matrix/description/ 문제 : You are given an m x n integer matrix matrix with the following two properties :Each row is sorted in non-decreasing order.The first integer of each r..
[LeetCode] - 342. Power of Four LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Power of Four" 문제입니다.--> https://leetcode.com/problems/power-of-four/description/ 문제 : Given an integer n, return true if it is a power of four. Otherwise, return false.An integer n is a power of four, if there exists an integer x such that n == 4x...
[LeetCode] - 326. Power of Three LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Power of Three" 문제입니다.--> https://leetcode.com/problems/power-of-three/description/ 문제 : Given an integer n, return true if it is a power of three.Otherwise, return false. An integer n is a power of three, if there exists an integer x such that n ==..
[LeetCode] - 367. Valid Perfect Square LeetCode는 프로그래밍 문제를 풀며 코딩 실력을 향상할 수 있는 온라인 플랫폼입니다. 다양한 알고리즘 및 데이터 구조 문제를 제공하며, 면접 대비에 유용합니다. 해당 문제는, LeetCode Problems에서 볼 수 있는 난이도 '쉬움 (Easy)' 단계인 "Valid Perfect Square" 문제입니다.--> https://leetcode.com/problems/valid-perfect-square/description/ 문제 :Given a positive integer num, return true if num is a perfect square or false otherwise. A perfect square is an integer that is the square of an inte..