leetcode(3)
-
[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] 724번: Find Pivot Index - Java
https://leetcode.com/problems/find-pivot-index/ Find Pivot Index - LeetCode Find Pivot Index - Given an array of integers nums, calculate the pivot index of this array. The pivot index is the index where the sum of all the numbers strictly to the left of the index is equal to the sum of all the numbers strictly to the index's righ 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