You are viewing a single comment's thread. Return to all comments →
**Mine Python Solution **
def permutationEquation(p): # Write your code here a = [p.index(i)+1 for i in range(min(p),max(p)+1)] b = [p.index(i)+1 for i in a ] return b
Seems like cookies are disabled on this browser, please enable them to open this website
Sequence Equation
You are viewing a single comment's thread. Return to all comments →
**Mine Python Solution **