mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-30 16:31:08 +00:00
Compare commits
2 Commits
1f57975ba1
...
2b6c79a06b
Author | SHA1 | Date | |
---|---|---|---|
|
2b6c79a06b | ||
|
81fe9ed382 |
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user