Find All Divisors
Divisors show which numbers can divide n without a remainder. The function divisors receives an integer n and returns a list of all its positive divisors. The result should be sorted in ascending order.
Примеры
Ввод
6Вывод
[1, 2, 3, 6]Ввод
1Вывод
[1]Ввод
12Вывод
[1, 2, 3, 4, 6, 12]Нужно реализовать
def divisors(n: int) -> list[int]:
Теги
mathlists
Prijavite se za ogled zgodovine oddaj
PrijavaPrijavite se za uporabo mentorja UI
PrijavaTests12
Visible tests
Skriti test 7
Skriti test 8
Skriti test 9
Skriti test 10
Skriti test 11
Skriti test 12
They run when you press "Submit" — your whole solution is checked against them so you can't hard-code answers for the visible cases.
Focus radio
Paused · SomaFM · Fluid