๋ฐ์ํ
Problem Description
๋จธ์ฑ์ด๋ค ํผ์๊ฐ๊ฒ๋ ํผ์๋ฅผ ์ผ๊ณฑ ์กฐ๊ฐ์ผ๋ก ์๋ผ ์ค๋๋ค. ํผ์๋ฅผ ๋๋ ๋จน์ ์ฌ๋์ ์ n์ด ์ฃผ์ด์ง ๋, ๋ชจ๋ ์ฌ๋์ด ํผ์๋ฅผ ํ ์กฐ๊ฐ ์ด์ ๋จน๊ธฐ ์ํด ํ์ํ ํผ์์ ์๋ฅผ return ํ๋ solution ํจ์๋ฅผ ์์ฑํด๋ณด์ธ์.
Restrictions
- 1 ≤ n ≤ 100
Input/Output Example
- ์ ์ถ๋ ฅ ์ #1 7๋ช ์ด ์ต์ ํ ์กฐ๊ฐ์ฉ ๋จน๊ธฐ ์ํด์ ์ต์ 1ํ์ด ํ์ํฉ๋๋ค.
- ์ ์ถ๋ ฅ ์ #2 1๋ช ์ ์ต์ ํ ์กฐ๊ฐ์ ๋จน๊ธฐ ์ํด 1ํ์ด ํ์ํฉ๋๋ค.
- ์ ์ถ๋ ฅ ์ #2 15๋ช ์ด ์ต์ ํ ์กฐ๊ฐ์ฉ ๋จน๊ธฐ ์ํด์ ์ต์ 3ํ์ด ํ์ํฉ๋๋ค.
My solution
function solution(n) {
if ((n % 7) >= 0) {
return Math.ceil(n/7)
}
}
Another solutions
function solution(n) {
return Math.ceil(n / 7)
}
ceil ํจ์ ๊ธฐ์ตํ๊ธฐ
console.log(Math.ceil(0.95));
// Expected output: 1
console.log(Math.ceil(4));
// Expected output: 4
console.log(Math.ceil(7.004));
// Expected output: 8
console.log(Math.ceil(-7.004));
// Expected output: -7
https://school.programmers.co.kr/learn/courses/30/lessons/120814
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/ceil
๋ฐ์ํ
'Problem Solution > Programmers' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[ํ๋ก๊ทธ๋๋จธ์ค/JS] ์ค๋ณต๋ ์ซ์ ๊ฐ์ (0) | 2023.09.07 |
---|---|
[ํ๋ก๊ทธ๋๋จธ์ค/JS] ๋ฐฐ์ด์ ์ ์ฌ๋ (1) | 2023.09.06 |
[ํ๋ก๊ทธ๋๋จธ์ค/JS] ์ผ๊ฐํ์ ์์ฑ์กฐ๊ฑด (1) (0) | 2023.09.06 |
[ํ๋ก๊ทธ๋๋จธ์ค/JS] ๋ฌธ์ ๋ฐ๋ณต ์ถ๋ ฅํ๊ธฐ (0) | 2023.09.06 |
[ํ๋ก๊ทธ๋๋จธ์ค/JS] ํน์ ๋ฌธ์ ์ ๊ฑฐํ๊ธฐ (0) | 2023.09.05 |