Guest User

Untitled

a guest
Dec 13th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. A = [3, 8, 9, 7, 6]
  2. K = 3
  3.  
  4. [6, 3, 8, 9, 7]
  5.  
  6. [3, 8, 9, 7, 6] -> [8, 9, 7, 6, 3]
  7. [8, 9, 7, 6, 3] -> [9, 7, 6, 3, 8]
  8. [9, 7, 6, 3, 8] -> [6, 3, 8, 9, 7]
Add Comment
Please, Sign In to add comment