Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New puzzle from Codeforces Problem 467 A #12

Open
akalai opened this issue Jul 12, 2021 · 0 comments
Open

New puzzle from Codeforces Problem 467 A #12

akalai opened this issue Jul 12, 2021 · 0 comments

Comments

@akalai
Copy link
Contributor

akalai commented Jul 12, 2021

def sat(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 = 17
    for i in range(len(ans)):
        a, b = ans[i]
        if b - a >= 2:
            target -= 1
    return target == 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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant