Print a matrix in spiral order
Given a nxm matrix , print the matrix in spiral order. Test Case Example 1 Sample Input: Expected Output: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 Solution To solve this problem, we will define 4 variables left: … Print a matrix in spiral order