mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2025-12-06 06:14:07 +00:00
8 lines
149 B
C++
8 lines
149 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
class Solution
|
|
{
|
|
public:
|
|
int findMin(vector<int> &nums);
|
|
bool test(vector<int> &nums, int answer);
|
|
}; |