This website works better with JavaScript
Halaman utama
Jelajahi
Bantuan
Daftar
Masuk
wolves
/
leetcode
cermin dari
https://git.wolves.top/wolves/leetcode.git
Liatin
1
Bintangi
0
Fork
0
Berkas
Masalah
0
Wiki
Pohon:
affa209d93
Ranting
Tag
main
leetcode
/
greed
/
lcs01.py
lcs01.py
118 B
Riwayat
Mentahan
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