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

Digit Dilemma #83

Open
Ayaz-75 opened this issue Feb 27, 2025 · 0 comments
Open

Digit Dilemma #83

Ayaz-75 opened this issue Feb 27, 2025 · 0 comments

Comments

@Ayaz-75
Copy link

Ayaz-75 commented Feb 27, 2025

def sat(x: int):  
    """Find an integer x such that the sum of the digits of x squared equals x."""  
    return sum(int(d) for d in str(x ** 2)) == x 

Solvers, post your solutions in the comments using the following formatting:

<details><summary>Reveal solution</summary>

```python
def sol():
    return 9  # 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