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 #6

Open
mlb2251 opened this issue Jun 16, 2021 · 2 comments
Open

New puzzle #6

mlb2251 opened this issue Jun 16, 2021 · 2 comments
Assignees

Comments

@mlb2251
Copy link

mlb2251 commented Jun 16, 2021

def sat(xs: List[int]): 
    return len(xs) == 7 and xs == xs[::-1] and sum(xs[:2]) == sum(xs[2:]) and all([x!=0 for x in xs])

Solution hidden below so that other people can try to solve it.

Reveal solution
def sol():
    return [1,1,-1,2,-1,1,1]

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>
@Achilles1515
Copy link

Reveal solution
def sol():
    return [1, 1, 1, -2, 1, 1, 1]

@ghost
Copy link

ghost commented Jun 27, 2021

Reveal solution
def sol():
    return [2,5,-5,10,-5,5,2]

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

3 participants