나의 풀이
function solution(n) { // 매개변수 n을 7로 나누어 올림을 해주어 리턴한다. var answer = Math.ceil(n / 7); return answer; }