Merge branch 'master' into lazeeez

This commit is contained in:
Abhinn Mishra
2021-10-24 13:48:36 +05:30
committed by GitHub

View File

@@ -28,7 +28,7 @@ namespace operations_on_datastructures {
* @returns void
*/
void print(const std::vector<int32_t> &array) {
for (int64_t i : array) {
for (int32_t i : array) {
std::cout << i << " "; /// Print each value in the array
}
std::cout << "\n"; /// Print newline