There is my problem:
I have an array of array and i want to rotate it n time by 90°:
For exemple, go from:
[
[1, 1, 1],
[1, 0, 1],
[0, 0, 1],
[1, 1, 1],
]
To:
[
[1, 0, 1, 1],
[1, 0, 0, 1],
[1, 1, 1, 1],
]
As a goddot beginner this problem is really too abstract for me, even in python i don't manage to succeed.
Also sorry for bad english i am a beginner too.