This website works better with JavaScript
صفحهٔ اصلی
گشتوگذار
راهنما
ثبت نام
ورود
wolves
/
leetcode
mirrorاز
https://git.wolves.top/wolves/leetcode.git
دنبال کردن
1
ستاره دار
0
انشعاب
0
پروندهها
مشکلات
0
ویکی
شاخه:
main
شاخهها
تگها
main
leetcode
/
greed
/
lcs01.py
lcs01.py
118 B
لینک دائمی
تاريخچه
خام
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