莫不是
莫不是
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
莫不是的博客
全部文章
(共4篇)
题解 | #24点运算#
暴力解法, 任何时候都能写出来 /* * Created by JoeTim on 2021/6/30. */ #include <bits/stdc++.h> using namespace std; // 3 4 5 6 7 8 9 10 J Q K A 2 joker J...
暴力才能解决一切
c++
简单
2021-07-02
0
495
题解 | #简单错误记录#
20 行解决问题 deque存储结果 map解决相同#include <iostream> #include <unordered_map> #include <deque> using namespace std; int main() { string p...
c++
简单
2021-06-26
0
504
题解 | #火车进站#
todo : 增加说明 #include <algorithm> #include <iostream> #include <stack> #include <vector> using namespace std; void dfs(const v...
c++
简单
2021-06-25
23
2367
最简单快速符合要求的解法,给个赞吧
正确解1: class Solution { public: int minNumberdisappered(vector<int>& nums) { // 1. 如果数组中都为负数, 结果为 1 // 2. 如果数组 [1 : N], 结...
c++
简单
位运算
2020-12-24
12
1895