保国
保国
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
保国的博客
全部文章
(共25篇)
题解 | #跳台阶#
# -*- coding:utf-8 -*- class Solution: def jumpFloor(self, number): # write code here #典型的动态规划/递归问题,设第i次有dp[i]种解法,则dp[i]=dp[i-1]+d...
Python3
2021-10-22
1
361
题解 | #子数组最大乘积#
# # # @param arr double浮点型一维数组 # @return double浮点型 # class Solution: def maxPro...
Python3
2021-10-22
0
351
题解 | #缺失数字#两种解法
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 找缺失数字 # @param a int整型一维数组 给定的数字串 # @return int整型 # class So...
Python3
2021-10-22
0
356
题解 | #求路径#
# # # @param m int整型 # @param n int整型 # @return int整型 # class Solution: &nb...
Python3
2021-10-22
2
455
题解 | #最长回文子串#
# -*- coding:utf-8 -*- class Solution: def getLongestPalindrome(self, A, n): &n...
Python3
2021-10-22
0
420
首页
上一页
1
2
3
下一页
末页