mirror of
https://github.com/20kaushik02/leetcode-gulag.git
synced 2026-01-25 07:34:05 +00:00
ok i'm back: 210-course-schedule-ii, 43-multiply-strings
This commit is contained in:
9
template/driver.cpp
Normal file
9
template/driver.cpp
Normal 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
2
template/soln.cpp
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "soln.hpp"
|
||||
|
||||
8
template/soln.hpp
Normal file
8
template/soln.hpp
Normal file
@@ -0,0 +1,8 @@
|
||||
#include <bits/stdc++.h>
|
||||
using namespace std;
|
||||
class Solution
|
||||
{
|
||||
public:
|
||||
|
||||
bool test(, bool answer);
|
||||
};
|
||||
Reference in New Issue
Block a user