Guest User

Untitled

a guest
May 20th, 2018
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. for i in range(0, len(x)):
  2. for j in range(0, len(x)):
  3. indice = i * len(x) + j
  4. value = x[i] ** (len(x) - j)
  5. M.put(indice, value)
Add Comment
Please, Sign In to add comment