๋ฌธ์
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 right.
If the index is on the left edge of the array, then the left sum is 0 because there are no elements to the left. This also applies to the right edge of the array.
Return the leftmost pivot index. If no such index exists, return -1.
์ ์ ๋ฐฐ์ด์ ๋งค๊ฐ๋ณ์๋ก ๋ฐ์ ํด๋น ๋ฐฐ์ด์ ํผ๋ด ์ธ๋ฑ์ค๋ฅผ ์ฐพ์ ๋ฐํํ๋ ๋ฌธ์ .
ํผ๋ด ์ธ๋ฑ์ค๋ ๋ฐฐ์ด ๋ด ์ธ๋ฑ์ค ์ผ์ชฝ์ ์๋ ๋ชจ๋ ์ซ์์ ํฉ์ด ์ธ๋ฑ์ค ์ค๋ฅธ์ชฝ์ ๋ชจ๋ ์ซ์์ ํฉ๊ณผ ๊ฐ์ ์ธ๋ฑ์ค์ด๋ค.
๋ง์ฝ ๊ฐ์ฅ ์ผ์ชฝ ๋์ ์๋ ์ธ๋ฑ์ค๊ฐ ์๋ค๋ฉด ์ผ์ชฝ ์ธ๋ฑ์ค์ ํฉ์ 0์ด ๋๋ค. (์ผ์ชฝ์ ๋ค๋ฅธ ์์๊ฐ ๋ ์๊ธฐ ๋๋ฌธ์. ์ค๋ฅธ์ชฝ๋ ๋์ผ)
๊ฐ์ฅ ์ผ์ชฝ์ ์๋ ํผ๋ด ์ธ๋ฑ์ค๋ฅผ ๋ฐํํ๋ฉฐ ์ธ๋ฑ์ค๊ฐ ์์ ๊ฒฝ์ฐ์๋ -1์ ๋ฐํํ๋ค.
ํ์ด
var pivotIndex = function(nums) {
let pivot = 0;
let sum = nums.reduce((prev, curr) => {
return prev + curr;
});
let leftSum = 0;
for (let i = 0; i < nums.length; i++) {
pivot = i;
sum -= nums[i];
if (sum === leftSum) return pivot;
leftSum += nums[i];
}
return -1;
};
์๊ฐํ ๊ณผ์ ์ ์๋์ ๊ฐ๋ค.
- ๋ฐฐ์ด์ ์ดํฉ ๊ตฌํ๊ธฐ
- ์ผ์ชฝ๋ถํฐ ์ธ๋ฑ์ค ํ๋๋น ์ดํฉ์์ ๋บ ๊ฐ๊ณผ ์ผ์ชฝ ์ธ๋ฑ์ค ๋์ ๊ฐ ๊ตฌํ๊ธฐ
- ์ดํฉ์์ ๋บ ๊ฐ๊ณผ ์ผ์ชฝ ์ธ๋ฑ์ค๊ฐ ์ผ์นํ๋ฉด ์ธ๋ฑ์ค ๋ฐํํ๊ธฐ
๋จผ์ ๋ฐฐ์ด์ ์ดํฉ์ for๋ฌธ์ผ๋ก ๊ตฌํ ์๋ ์์ง๋ง, ์ข ๋ ์ฝ๋๋ฅผ ์ง๊ด์ ์ด๊ณ ๊ฐ์ํ ์ํฌ ์ ์๋๋ก,
์ง๋ ๋ฒ์ ์ฌ์ฉํด๋ณด์๋ reduce ๋ฉ์๋๋ฅผ ์ด์ฉํด๋ดค๋ค.
๋ฐฐ์ด์ ๋ชจ๋ ์์๋ฅผ ๋ฐ์ ธ๋ด์ผ ํ๋ฏ๋ก ํ๋์ for๋ฌธ์ ํตํด ์ธ๋ฑ์ค๋ฅผ ๊ตฌํ๊ธฐ๋ก ํ๋ค.
ํผ๋ด ์ธ๋ฑ์ค๋ i๊ฐ ์ฆ๊ฐํ ๋๋ง๋ค ์๋กญ๊ฒ ์ง์ ํ๊ณ ์กฐ๊ฑด์ ์ผ์นํ๋ฉด ๋ฐํํ๋ ๋ฐฉ์์ด๋ค.
ํ๋์ ์ธ๋ฑ์ค๋ฅผ ๊ธฐ์ค์ผ๋ก ์ดํฉ์์ ํ์ฌ ์ธ๋ฑ์ค ๊ฐ์ ๋บ์ ๋ ๋์ ๊ฐ๊ณผ ๊ฐ์์ง ๋น๊ตํ๊ณ ,
์ดํฉ์ด ๋ ํฌ๋ค๋ฉด ๋์ ๊ฐ์ ์ธ๋ฑ์ค๊ฐ์ ๋ํด์ฃผ๊ธฐ๋ก ํ๋ค.
๋ค๋ฅธ ๋ฐฉ๋ฒ
LeetCode์์ ๋ณธ ๋ค๋ฅธ ํ์ด ๋ฐฉ์ ์ค ํ๋์ด๋ค.
var pivotIndex = function(nums) {
let sum = nums.reduce((a,b)=>a+b, 0);
let sumL = 0;
for(let i=0, len=nums.length; i<len; i++){
if(sumL === (sum-nums[i])/2) return i;
sumL += nums[i];
}
return -1;
};
๋์ ๋์ผํ๊ฒ reduce ๋ฉ์๋๋ก ์ดํฉ์ ๊ตฌํ๊ณ ,
์ผ์ชฝ ๋์ ๊ฐ์ด ์ดํฉ์์ ํ์ฌ ์ธ๋ฑ์ค๊ฐ์ ๋บ ๊ฒ์ 2๋ก ๋๋ ๊ฐ๊ณผ ์ผ์นํ๋ฉด ๋ฐํํ๋ ์์ด๋ค.
2๋ก ๋๋ ๊ฒ์ ์ผ์ชฝ๊ณผ ์ค๋ฅธ์ชฝ์ ๋์ ๊ฐ์ด ๋์ผํด์ผ ํ๋ ๋ถ๋ถ์ ์ฐจ์ฉํ ๊ฒ ๊ฐ๋ค.
์ถ๊ฐ๋ก ๋ค๋ฅธ ๋ฐฉ๋ฒ์ด ํ๋ ๋ ์๋๋ฐ, ์๋ ํ์ด์ง์์ ๋ณผ ์ ์๋ค.
๐คธโ๏ธ๐คธโ๏ธ๐คธโ๏ธ๐คธโ๏ธ๐คธโ๏ธ๐คธโ๏ธ
๋ฐฉ๋ฌธํด์ฃผ์ ์ ๊ฐ์ฌํฉ๋๋ค! ๐
ํฌ์คํ ๋ค์ ๊ณต๋ถ์ค์ธ ๋ด์ฉ์ ๊ธ๋ก ์์ฑํ ๊ฒ์ด๋ผ ๋ถ์กฑํ ์ ์ด ๋ง์ผ๋ ์ฐธ๊ณ ๋ถํ๋๋ฆฝ๋๋ค.
๋ถ์กฑํ ๋ถ๋ถ์ ๋ํ ์ฝ๋ฉํธ๋ ์ธ์ ๋ ํ์์ ๋๋ค.
์ข์ ํ๋ฃจ ๋์ธ์, ๊ฐ์ฌํฉ๋๋ค! ๐
'๐ Algorithm > LeetCode' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[JavaScript] leetCode : Linked List Cycle II (3) | 2022.05.03 |
---|---|
[JavaScript] leetCode : Valid Mountain Array (3) | 2022.05.02 |
[JavaScript] LeetCode : Add Binary (0) | 2022.04.22 |
[JavaScript] LeetCode : Plus One (0) | 2022.04.21 |
[JavaScript] LeetCode : Largest Number At Least Twice of Others (1) | 2022.04.20 |
Comment