牛客365386110号
牛客365386110号
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
牛客365386110号的博客
全部文章
(共3篇)
题解 | #回文数字#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x int整型 # @return bool布尔型 # class Solution: def isPalindrome(self , x: int) -> bool: ...
Python3
数学
2022-05-19
0
263
题解 | #三个数的最大乘积#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # 最大乘积 # @param A int整型一维数组 # @return long长整型 # class Solution: def solve(self , A: List[int]) -> int...
Python3
数学
数组
2022-05-17
0
346
题解 | #循环右移二叉树#
# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x int整型 # @return int整型 # class Solution: def mysqrt(self , x: int) -> int: # wri...
Python3
数学
2022-05-17
0
239