走走做足
走走做足
全部文章
题解
归档
标签
去牛客网
登录
/
注册
走走做足的博客
全部文章
/ 题解
(共4篇)
题解 | #买卖股票的最好时机(一)#
# # # @param prices int整型一维数组 # @return int整型 # 贪心算法 class Solution: def maxPr...
Python2
贪心
2021-11-07
0
0
题解 | #反转数字#
# # # @param x int整型 # @return int整型 # 利用切片法反转字符串,最后做出判断 class Solution: def re...
Python2
Python3
2021-10-16
2
0
题解 | #判断回文#
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # @param str string字符串 待判断的字符串 # @return bool布尔型 # 双指针法,分别定义两个指针,指向头部和尾部,进行比较。 class Solution: def jud...
Python2
Python3
双指针
2021-10-15
1
0
题解 | #商品交易(网易校招笔试真题)#
select id,name,weight,tatol from goods as g, (select goods_id,sum(count) as tatol from trans group by goods_id) t where g.id = t.goods_id and tatol>...
Mysql
2021-10-06
1
0