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