You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defsat(indexes):
""" Given a list of integers representing a permutation, invert the permutation. Inspired by [Codeforces Problem 136 A](https://codeforces.com/problemset/problem/136/A) """target=[1, 3, 4, 2, 5, 6, 7]
foriinrange(1, len(target) +1):
iftarget[indexes[i-1] -1] !=i:
returnFalsereturnTrue
Solvers, post your solutions in the comments using the following formatting:
<details><summary>Reveal solution</summary>
```python
def sol():
return "world" # replace with your solution
```
</details>
The text was updated successfully, but these errors were encountered:
Solvers, post your solutions in the comments using the following formatting:
The text was updated successfully, but these errors were encountered: