- Published on
Codility - Max Product of Three
- Author
- Name
- yceffort
Max Product of Three
๋ฌธ์
๊ธธ์ด N์ธ ๋ฐฐ์ด A๊ฐ ์ฃผ์ด์ก์๋, ์์๋ก ์ธ๊ฐ์ ์ซ์๋ฅผ ๊ณฑํ์ ๋ ๊ฐ์ฅ ํฐ ๊ฐ์ ๋ง๋ค ์ ์๋ ๋ฐฐ์ด์ Index๋ฅผ ๋ฆฌํดํด๋ผ.
A[0] = -3
A[1] = 1
A[2] = 2
A[3] = -2
A[4] = 5
A[5] = 6
2, 4, 5๋ฒ์งธ๋ฅผ ๊ณฑํ๋ฉด 60์ ๋ง๋ค์ ์๊ณ ์ด๊ฒ์ด ๊ฐ์ฅ ํฐ ๊ฒฝ์ฐ ์ด๋ฏ๋ก, 60์ ๋ฆฌํดํ๋ฉด๋๋ค.
ํ์ด
function solution(A) {
const sorted = A.sort((a, b) => a - b)
const size = sorted.length
let biggest = 0
biggest = sorted[size - 1] * sorted[size - 2] * sorted[size - 3]
if (sorted[0] < 0 && sorted[1] < 0 && sorted[size - 1] > 0) {
const possible = sorted[0] * sorted[1] * sorted[size - 1]
if (possible > biggest) {
biggest = possible
}
}
return biggest
}
ํ๋ ์กฐ์ฌํด์ผ ํ ๊ฒ์, ๋ ๊ฐ์ ์์ * ํ๊ฐ์ ์์ ์กฐํฉ์ผ๋ก๋ ํฐ ์๋ฅผ ๋ง๋ค ์ ์๋ค๋ ๊ฒ์ด๋ค. ๋ฐ๋ผ์ ๋ฌด์กฐ๊ฑด ํฐ ๊ฐ ์ธ๊ฐ๋ฅผ ๊ณฑํด๋ฒ๋ฆฌ๋ฉด ์๋๋ค. ๋ฐ๋ผ์ ๊ฐ์ฅ ํฐ ์๋ฅผ ๋ง๋ค ์ ์๋ ๊ฒฝ์ฐ์ ์๋ ์๋์ ๊ฐ๋ค.
- ์ซ์๊ฐ ํฐ ์์๋๋ก ์ธ๊ฐ๋ฅผ ๊ณฑํ๊ฑฐ๋
- ์์์ดํ์ ๊ฐ์ฅ ์์ ์ซ์ ๋๊ฐ๋ฅผ ๊ณฑํ๊ณ ๊ฐ์ฅ ํฐ ์์๋ฅผ ๊ณฑํ๊ฑฐ๋
๋ ํ๋ ์กฐ์ฌํด์ผํ ๊ฒ์, sort()
๋ค. ๊ทธ๋ฅ ์๋ฌด ํจ์ ์์ด sortํ๋๋, ์ ๋๋ก ์ ๋ ฌํ์ง ๋ชปํ๋ค. (์กธ์์ ๊ทธ๋ฐ๊ฑฐ๋ผ๊ณ ์น์)
compareFunction์ด ์ ๊ณต๋์ง ์์ผ๋ฉด ์์๋ฅผ ๋ฌธ์์ด๋ก ๋ณํํ๊ณ ์ ๋ ์ฝ๋ ์ฝ๋ ํฌ์ธํธ ์์๋ก ๋ฌธ์์ด์ ๋น๊ตํ์ฌ ์ ๋ ฌ๋ฉ๋๋ค. ์๋ฅผ ๋ค์ด "๋ฐ๋๋"๋ "์ฒด๋ฆฌ"์์์ต๋๋ค. ์ซ์ ์ ๋ ฌ์์๋ 9๊ฐ 80๋ณด๋ค ์์ ์ค์ง๋ง ์ซ์๋ ๋ฌธ์์ด๋ก ๋ณํ๋๊ธฐ ๋๋ฌธ์ "80"์ ์ ๋ ์ฝ๋ ์์์์ "9"์์์ต๋๋ค.
ํ๊ตญ ๋ง์ด ๋ ์ด๋ ต๋ค (....)
If compareFunction is not supplied, all non-undefined array elements are sorted by converting them to strings and comparing strings in UTF-16 code units order. For example, "banana" comes before "cherry". In a numeric sort, 9 comes before 80, but because numbers are converted to strings, "80" comes before "9" in the Unicode order. All undefined elements are sorted to the end of the array.
๋น๊ต ํจ์๊ฐ ์ ์ ๋์ง ์๋๋ค๋ฉด, ๋ชจ๋ ์์๋ฅผ string์ผ๋ก ๋ณํํ๊ณ ์ด string์ UTF-16 ์ฝ๋๋ก ๋ณํํด์ ๋น๊ต ํ๋ค๋ ๊ฒ์ด๋ค.
const a = [-1, -10, -9, -5, -7]
const sorted = a.sort()
console.log(sorted) // [-1, -10, -5, -7, -9]]
์ซ์ ๋น๊ต ์์๋ ์ ๋ compareFunction์ ๋น์ฐ์ง๋ง์ -