mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-28 19:43:31 +08:00
c++
This commit is contained in:
parent
c7885b547c
commit
97273a3fc5
@ -416,6 +416,21 @@ public:
|
||||
};
|
||||
```
|
||||
|
||||
## 补充:13. 找出数组中重复的数字
|
||||
|
||||
```cpp
|
||||
//哈希表秒了
|
||||
//方二:不要了
|
||||
class Solution {
|
||||
public:
|
||||
int duplicateInArray(vector<int>& nums) {
|
||||
|
||||
}
|
||||
};
|
||||
```
|
||||
|
||||
|
||||
|
||||
# 16.75. 和为S的两个数字
|
||||
|
||||
```cpp
|
||||
|
Loading…
Reference in New Issue
Block a user