Content deleted Content added
→Programming example: PEP-8 |
→Programming example: add docstring |
||
Line 322:
<source lang="python">
def find_polydivisible(base: int) -> List[int]:
"""Find polydivisible number."""
numbers = []
previous = []
|