Skip to content

Commit aaef7b5

Browse files
authored
Merge pull request #56 from yuj2n/yujin
`week9` [전유진] 문제풀이
2 parents 0639095 + 5ed916e commit aaef7b5

12 files changed

+22
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
function solution(n) {
2+
let pizza = 7;
3+
return Math.ceil(n / pizza);
4+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
function solution(slice, n) {
2+
return Math.ceil(n/slice);
3+
}

0 commit comments

Comments
 (0)