This website works better with JavaScript
Strona główna
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
wolves
/
leetcode
kopia lustrzana
https://git.wolves.top/wolves/leetcode.git
Obserwuj
1
Polub
0
Forkuj
0
Pliki
Problemy
0
Wiki
Gałąź:
main
Gałęzie
Tagi
main
leetcode
/
greed
/
lcs01.py
lcs01.py
118 B
Bezpośredni odnośnik
Historia
Czysty
1
2
3
4
5
6
import math
def least_minutes(n: int) -> int:
if n == 0:
return 0
return math.ceil(math.log2(n)) + 1