Open
Description
def sat(inds: List[int]):
return inds == sorted(inds) and "".join("enlightenment"[i] for i in inds) == "intelligent"
Please post your solutions to this puzzle in the comments using the following formatting:
<details><summary>Reveal solution</summary>
```python
def sol():
return "world" # replace with your solution
```
</details>