방법1. 하나의 반복문에서 배치방법2. 중첩 반복문으로 배치using System.Collections;using System.Collections.Generic;using UnityEngine;public class GameManager : MonoBehaviour{ public GameObject cube; void Start() { int row = 6; int col = 2; int dep = 12; /* loop 1 */ // int cnt = row * col * dep; // for (int i = 0; i 1번 방법. O(n), 수학적 로직에 익숙한 사람들 선호2번 방법. O(n^3), 직관적 이해 ..