Compare commits

...

4 Commits

Author SHA1 Message Date
Scarfinos
1f57975ba1
Merge 81fe9ed382 into e3bd7721c8 2024-11-18 10:32:12 +01:00
Christian Clauss
e3bd7721c8
validate_filenames.py Shebang python for Windows (#12371) 2024-11-15 14:59:14 +01:00
pre-commit-ci[bot]
e3f3d668be
[pre-commit.ci] pre-commit autoupdate (#12370)
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/astral-sh/ruff-pre-commit: v0.7.2 → v0.7.3](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.2...v0.7.3)
- [github.com/abravalheri/validate-pyproject: v0.22 → v0.23](https://github.com/abravalheri/validate-pyproject/compare/v0.22...v0.23)

* Update sudoku_solver.py

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Christian Clauss <cclauss@me.com>
2024-11-11 21:05:50 +01:00
Scarfinos
81fe9ed382 #9943 : improve coverrage test for armstrong number 2024-10-30 10:29:14 +01:00
4 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@ repos:
- id: auto-walrus - id: auto-walrus
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.7.2 rev: v0.7.3
hooks: hooks:
- id: ruff - id: ruff
- id: ruff-format - id: ruff-format
@ -42,7 +42,7 @@ repos:
pass_filenames: false pass_filenames: false
- repo: https://github.com/abravalheri/validate-pyproject - repo: https://github.com/abravalheri/validate-pyproject
rev: v0.22 rev: v0.23
hooks: hooks:
- id: validate-pyproject - id: validate-pyproject

View File

@ -172,7 +172,7 @@ def solved(values):
def from_file(filename, sep="\n"): def from_file(filename, sep="\n"):
"Parse a file into a list of strings, separated by sep." "Parse a file into a list of strings, separated by sep."
return open(filename).read().strip().split(sep) # noqa: SIM115 return open(filename).read().strip().split(sep)
def random_puzzle(assignments=17): def random_puzzle(assignments=17):

View File

@ -43,9 +43,9 @@ def armstrong_number(n: int) -> bool:
def pluperfect_number(n: int) -> bool: def pluperfect_number(n: int) -> bool:
"""Return True if n is a pluperfect number or False if it is not """Return True if n is a pluperfect number or False if it is not
>>> all(armstrong_number(n) for n in PASSING) >>> all(pluperfect_number(n) for n in PASSING)
True True
>>> any(armstrong_number(n) for n in FAILING) >>> any(pluperfect_number(n) for n in FAILING)
False False
""" """
if not isinstance(n, int) or n < 1: if not isinstance(n, int) or n < 1:
@ -70,9 +70,9 @@ def pluperfect_number(n: int) -> bool:
def narcissistic_number(n: int) -> bool: def narcissistic_number(n: int) -> bool:
"""Return True if n is a narcissistic number or False if it is not. """Return True if n is a narcissistic number or False if it is not.
>>> all(armstrong_number(n) for n in PASSING) >>> all(narcissistic_number(n) for n in PASSING)
True True
>>> any(armstrong_number(n) for n in FAILING) >>> any(narcissistic_number(n) for n in FAILING)
False False
""" """
if not isinstance(n, int) or n < 1: if not isinstance(n, int) or n < 1:

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python3 #!python
import os import os
try: try: