10x10 이중벡터는

 

std::vector<std::vector<int>> nums(10, std::vector<int>); 처럼 쓰는것 보다

 

std::vector<int> nums[10]; 이라고 쓰는게 훨씬 간결하다...