python4geeks / Hactoberfest2022

This repository is to allow Hactoberfest 2022 participants to make PR's. This repository aims to help beginners 🤔 with their first successful Pull Request and Open Source Contribution
16 stars 103 forks source link

Rotate Matrix Elements #91

Open biratkundu opened 1 year ago

biratkundu commented 1 year ago

Input 1 2 3 4 5 6 7 8 9

Output: 4 1 2 7 5 3 8 9 6

For 4*4 matrix Input: 1 2 3 4
5 6 7 8 9 10 11 12 13 14 15 16

Output: 5 1 2 3 9 10 6 4 13 11 7 8 14 15 16 12