🍒题目一 69. x 的平方根
🍒解法一
class Solution(object):
def mySqrt(self, x):
"""
:type x: int
:rtype: int
"""
if x == 0:
return 0
ans = int(math.exp(0.5 * math.log(x)))
return ans + 1 if (ans + 1) ** 2 <= x else ans
官方作答,使用数学公式的转换进行求解
🍒解法二
解法二使用的是二分法,本人属实没想到,常规来说,二分法用于查询,居然在这里可以用到,当然此题也是查询,还是自己笨~
class Solution(object):
def mySqrt(self, x):
"""
:type x: int
:rtype: int
"""
first = 0
end = x
e = -1
while first<=end:
mid = (first+end)//2
if mid*mid<=x:
e = mid
first = mid + 1
else:
end = mid - 1
return e
🍒题目二 70. 爬楼梯
假设你正在爬楼梯。需要 n 阶你才能到达楼顶。
每次你可以爬 1 或 2 个台阶。你有多少种不同的方法可以爬到楼顶呢?
示例 1:
输入:n = 2
输出:2
解释:有两种方法可以爬到楼顶。
- 1 阶 + 1 阶
- 2 阶
示例 2:
输入:n = 3
输出:3
解释:有三种方法可以爬到楼顶。
- 1 阶 + 1 阶 + 1 阶
- 1 阶 + 2 阶
- 2 阶 + 1 阶
🍒解法一
class Solution(object):
def climbStairs(self, n):
"""
:type n: int
:rtype: int
"""
a = 1
b = 1
for _ in range(n - 1):
a, b = b, a + b
return b
leetcode里面大佬的思路
总结,我发现自己想的不细,我甚至想到了全排列,后来发现1就是1,2就是2啊!!!哭死
等过两天我整理一下前几天的做题思路,做个汇总方便后续刷题参考~
文章来源:https://www.toymoban.com/news/detail-735156.html
挑战与创造都是很痛苦的,但是很充实。文章来源地址https://www.toymoban.com/news/detail-735156.html
到了这里,关于LeetCode刷题---简单组(六)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!