钰袖
钰袖
全部文章
分类
题解(10)
归档
标签
去牛客网
登录
/
注册
钰袖的博客
全部文章
(共4篇)
题解 | #集合的所有子集#
两种方法: 一. 回溯: C++: class Solution { public: vector<vector<int>>result; vector<int>path; void backtracing(vector<in...
c++
python
java
2021-06-05
7
852
题解 | #螺旋矩阵#
C++: class Solution { public: vector<int> spiralOrder(vector<vector<int> > &matrix) { int n=matrix.size(); i...
c++
python
java
2021-06-04
0
570
题解 | #质数#
再贴一个python3的: class Solution: def numbers(self , a , b , c , d , p ): # write code here #我吐了忘了python与其他语言不一样。。。。 return (b...
python
2021-06-03
0
573
题解 | #寻找峰值#
python: class Solution: def solve(self , a ): # write code here n=len(a); po=-1; for i in range(n): ...
c++
python
java
2021-06-03
1
669