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(ans: List[List[int]]):
""" Find a list of lists of two integers where the number of pairs in which the second number is more than two greater than the first number is a given constant Inspired by [Codeforces Problem 467 A](https://codeforces.com/problemset/problem/467/A) """target=17foriinrange(len(ans)):
a, b=ans[i]
ifb-a>=2:
target-=1returntarget==0
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: