개선 코드직접 계산반복문 안 쓰고, 배열 인덱스로 직접 접근 (가로 * 세로 * 높이) using System;public class Solution { public int solution(int[] box, int n) { return (box[0] / n) * (box[1] / n) * (box[2] / n); }} LINQ 사용using System;using System.Linq;public class Solution { public int solution(int[] box, int n) { return box.Select(length => length / n).Aggregate(1, (a, b) => a * b); }}box.Select(length..