update readme

master
Furkan Türkal 7 years ago
parent 0a14bf1f5e
commit 999ef88bcc

@ -8,11 +8,11 @@
* Write a function `rotate(ar[], d, n)` that rotates `arr[]` of size `n` by `d` elements
`1 2 3 4 5 6 7`
> `1 2 3 4 5 6 7`
* Rotation of the above array by `2` will make array
`3 4 5 6 7 1 2`
> `3 4 5 6 7 1 2`
**METHOD 1 (Use temp array)**

Loading…
Cancel
Save