加油666
加油666
全部文章
题解
归档
标签
去牛客网
登录
/
注册
加油666的博客
全部文章
/ 题解
(共2篇)
题解 | #寻找峰值#
Python 反转字符串 # # 寻找最后的山峰 # @param a int整型一维数组 # @return int整型 # class Solution: def solve(self , a ): # write code here if len(a)...
2021-06-07
0
586
题解 | #判断回文#
1.Python 中间字符串反转解法 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param str string字符串 待判断的字符串 # @return bool布尔型 # class Solution: def judge(self ,...
2021-06-07
3
700