This website works better with JavaScript
Etusivu
Tutki
Apua
Rekisteröidy
Kirjaudu sisään
wolves
/
leetcode
peilaus alkaen
https://git.wolves.top/wolves/leetcode.git
Tarkkaile
1
Äänestä
0
Haarauta
0
Tiedostot
Esitykset
0
Wiki
Puu:
68a402077a
Haarat
Tunnisteet
main
leetcode
/
greed
/
lcs01.py
lcs01.py
118 B
Historia
Raaka
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