This website works better with JavaScript
Ana Sayfa
Keşfet
Yardım
Üye Ol
Giriş Yap
wolves
/
leetcode
şunun yansıması
https://git.wolves.top/wolves/leetcode.git
İzle
1
Yıldızla
0
Çatalla
0
Dosyalar
Sorunlar
0
Wiki
Ağaç:
affa209d93
Dallar
Biçim İmleri
main
leetcode
/
greed
/
lcs01.py
lcs01.py
118 B
Geçmiş
Ham
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