莱布尼兹的n+3阶
莱布尼兹的n+3阶
全部文章
题解
归档
标签
去牛客网
登录
/
注册
莱布尼兹的n+3阶的博客
全部文章
/ 题解
(共5篇)
题解 | #出现一次的数字#
使用异或计算即可 # # # @param A int整型一维数组 # @return int整型 # class Solution: def singleNumber(self , A ): # write code here res = 0 ...
Python3
2021-09-25
4
481
题解 | #合并两个有序的数组#
说一个比较偷懒的方法,即使用python自带的sort()函数,一步到位 class Solution: def merge(self , A, m, B, n): # write code here for i in range(n): ...
Python3
2021-09-18
1
485
题解 | #用两个栈实现队列#
python里面有pop()函数,将stack1倒序写入stack2,那么就直接用pop()即可,然后再对stack2用pop()输出。具体的思路跟最高赞的思路是完全一致的。 # -*- coding:utf-8 -*- class Solution: def __init__(self):...
Python3
2021-09-17
9
902
题解 | #判断回文#
使用python非常简单,只要字符串反过来跟正着的相等即可: class Solution: def judge(self , str ): # write code here if str == str[::-1]: return T...
2021-09-10
0
331
题解 | #反转字符串#
# # 反转字符串 # @param str string字符串 # @return string字符串 # class Solution: def solve(self , str ): # write code here str_new = list(s...
2021-09-10
0
333