From 6e4e17e32f5dc7f5f1f6b8464565a68515a0c49d Mon Sep 17 00:00:00 2001 From: Ayushi Bisht <94152085+AyuBisht@users.noreply.github.com> Date: Tue, 11 Jan 2022 21:49:35 +0530 Subject: [PATCH] fix: fixed indentation --- Code/C++/2d_matrix_rotation_90degree_clockwise.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Code/C++/2d_matrix_rotation_90degree_clockwise.cpp b/Code/C++/2d_matrix_rotation_90degree_clockwise.cpp index c76128f3a..1071be13b 100644 --- a/Code/C++/2d_matrix_rotation_90degree_clockwise.cpp +++ b/Code/C++/2d_matrix_rotation_90degree_clockwise.cpp @@ -4,7 +4,7 @@ Example: The given matrix is 1 2 3 4 5 6 7 8 9 - After rotation by 90 degree it will become + After rotation by 90 degree it will become 7 4 1 8 5 2 9 6 3 @@ -65,8 +65,7 @@ void print(vector>& v){ cout<