Content deleted Content added
Add category |
|||
(One intermediate revision by the same user not shown) | |||
Line 311:
==Programming example==
The example below searches for polydivisible numbers in [[Python (programming language)|Python
<syntaxhighlight lang="python">
def find_polydivisible(base: int) -> list[int]:
Line 331:
return numbers
</syntaxhighlight>
==Related problems==
Line 373 ⟶ 362:
{{Divisor classes}}
[[Category:Articles with example Python (programming language) code]]
[[Category:Base-dependent integer sequences]]
[[Category:Modular arithmetic]]
|