[Kotlin/프로그래머스] 피자 나눠 먹기(1)
문제 머쓱이네 피자가게는 피자를 일곱 조각으로 잘라 줍니다. 피자를 나눠먹을 사람의 수 n이 주어질 때, 모든 사람이 피자를 한 조각 이상 먹기 위해 필요한 피자의 수를 return 하는 solution 함수를 완성해보세요. 풀이 class Solution { fun solution(n: Int): Int { // 오답 1 // return (n/7)+1 // 오답 2 //var quotient:Int = n/7 //return if(quotient == 1) 1 else quotient+1 if(n < 7){ return 1 } else if (n%7 == 0){ return n/7 } else{ return (n/7)+1 } } } 다른 사람 풀이 import kotlin.math.ceil class..