ok i'm back: 210-course-schedule-ii, 43-multiply-strings

This commit is contained in:
2023-12-24 18:51:58 -07:00
parent 6df68a24f2
commit 44dd48d78b
9 changed files with 132 additions and 0 deletions

9
template/driver.cpp Normal file
View File

@@ -0,0 +1,9 @@
#include "soln.hpp"
int main()
{
Solution soln;
cout << "? " << soln.test(, answer) << endl;
return 0;
}

2
template/soln.cpp Normal file
View File

@@ -0,0 +1,2 @@
#include "soln.hpp"

8
template/soln.hpp Normal file
View File

@@ -0,0 +1,8 @@
#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
bool test(, bool answer);
};