LeetCode41 [LeetCode] 329. Longest Increasing Path in a Matrix 문제 URL :https://leetcode.com/problems/longest-increasing-path-in-a-matrix/ Longest Increasing Path in a Matrix - LeetCode Can you solve this real interview question? Longest Increasing Path in a Matrix - Given an m x n integers matrix, return the length of the longest increasing path in matrix. From each cell, you can either move in four directions: left, right, up, or down. leetcode.com 접근법: 2차.. 2023. 10. 14. [LeetCode] 875. Koko Eating Bananas 문제 URL : https://leetcode.com/problems/koko-eating-bananas/description/ Koko Eating Bananas - LeetCode Can you solve this real interview question? Koko Eating Bananas - Koko loves to eat bananas. There are n piles of bananas, the ith pile has piles[i] bananas. The guards have gone and will come back in h hours. Koko can decide her bananas-per-hour eating sp leetcode.com 문제 접근법 : 이분탐색을 요구하는 문제입니다.. 2023. 9. 12. [LeetCode] 2834. Find the Minimum Possible Sum of a Beautiful Array 문제 URL : https://leetcode.com/problems/find-the-minimum-possible-sum-of-a-beautiful-array/ Find the Minimum Possible Sum of a Beautiful Array - LeetCode Can you solve this real interview question? Find the Minimum Possible Sum of a Beautiful Array - You are given positive integers n and target. An array nums is beautiful if it meets the following conditions: * nums.length == n. * nums consists o.. 2023. 9. 12. [LeetCode] 300. Longest Increasing Subsequence 문제 URL :https://leetcode.com/problems/longest-increasing-subsequence/ Longest Increasing Subsequence - LeetCode Can you solve this real interview question? Longest Increasing Subsequence - Given an integer array nums, return the length of the longest strictly increasing subsequence. Example 1: Input: nums = [10,9,2,5,3,7,101,18] Output: 4 Explanation: The longest leetcode.com 문제 접근법 : 정말오랜만에 보는 .. 2023. 9. 12. 이전 1 2 3 4 5 ··· 11 다음