🔗 문제
https://school.programmers.co.kr/learn/courses/30/lessons/120816
💻 Code
from math import ceil
def solution(slice, n):
return ceil(n / slice)
'Algorithm > 프로그래머스' 카테고리의 다른 글
[Lv.0/Python] 아이스 아메리카노 (0) | 2023.07.28 |
---|---|
[Lv.0/Python] 편지 (0) | 2023.07.27 |
[Lv.0/Python] 피자 나눠 먹기 (1) (0) | 2023.07.27 |
[Lv.0/Python] 양꼬치 (0) | 2023.07.27 |
[Lv.0/Python] 배열의 평균값 (0) | 2023.07.27 |