Merge branch 'master' into array-left-rotation

This commit is contained in:
David Leal
2021-10-23 20:08:34 -05:00
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