프로그래머스(Level 0) - 🎲 주사위의 개수

Gammi·2023년 5월 4일
0

프로그래머스

목록 보기
61/69

✔ 문제






✔ 해결


class Solution {
  public int solution(int[] box, int n) {
    int answer = 1;
    
    for(int i = 0; i < box.length; i++) {
      answer *= box[i] / n;
    }
    return answer;
  }
}
profile
개발자가 되었어요⭐️

0개의 댓글