Auratus_
Auratus_
全部文章
分类
归档
标签
去牛客网
登录
/
注册
Auratus_的博客
全部文章
(共14篇)
题解 | 字母异位词的长度python
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param s string字符串 # @param c string字符串 # @return int整型 # class Solution: def isCongruent(self ,...
2025-10-31
1
48
题解 | 两数之和python
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums int整型一维数组 # @param target int整型 # @return int整型一维数组 # class Solution: def twoSum(sel...
2025-10-30
2
61
题解 | 验证栈序列
N = int(input()) for _ in range(N): n = int(input()) in_list = list(map(int,input().split())) res_list = list(map(int,input().split())) ...
2025-10-30
2
46
题解 | #字符串排序#
#include <iostream> #include<vector> #include<algorithm> using namespace std; struct ss{//构造结构体 char c;//储存元素 int num;//储存元...
2024-09-04
1
117
首页
上一页
1
2
下一页
末页