Array
Using array int[]
is more performant than vector<int>
.
The following trick can initialize the array with customized values.
See: https://www.geeksforgeeks.org/designated-initializers-c/
Last updated
Using array int[]
is more performant than vector<int>
.
The following trick can initialize the array with customized values.
See: https://www.geeksforgeeks.org/designated-initializers-c/
Last updated