pub fn new_array_vec<T, const N: usize>(capacity: usize) -> [Vec<T>; N]where T: Debug,
Returns an array of N vectors initialized with the specified capacity.