Polydivisible number: Difference between revisions

Content deleted Content added
m Reverted edits by 2402:7500:468:95F9:F57B:8517:C6D4:976E (talk) (HG) (3.4.10)
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags
Line 320:
==Programming example==
The example below searches for polydivisible numbers in [[Python (programming language)|Python]].
<sourcesyntaxhighlight lang="python">
def find_polydivisible(base: int) -> List[int]:
"""Find polydivisible number."""
Line 340:
digits = digits + 1
return numbers
</syntaxhighlight>
</source>
 
==Related problems==