two pointer(2)
-
[LeetCode] 209번: Minimum Size Subarray Sum - Java
https://leetcode.com/problems/minimum-size-subarray-sum/ Minimum Size Subarray Sum - LeetCode Can you solve this real interview question? Minimum Size Subarray Sum - Given an array of positive integers nums and a positive integer target, return the minimal length of a subarray whose sum is greater than or equal to target. If there is no such subarr leetcode.com 문제 설명 타겟 넘버와 양수로 구성된 배열이 주어진다. 이때 ..
2023.02.17 -
[LeetCode] 283번: Move Zeroes - Java
https://leetcode.com/problems/move-zeroes/ Move Zeroes - LeetCode Move Zeroes - Given an integer array nums, move all 0's to the end of it while maintaining the relative order of the non-zero elements. Note that you must do this in-place without making a copy of the array. Example 1: Input: nums = [0,1,0,3,12] Output: leetcode.com 문제 설명 배열에 있는 0들을 오른쪽으로 모두 보내면 된다. 주의할 점은 요소들의 순서가 바뀌면 안 된다는 것이다. ..
2023.02.17