diff --git a/LeetcodeTemplate.cpp b/LeetcodeTemplate.cpp new file mode 100644 index 0000000..f0e9dde --- /dev/null +++ b/LeetcodeTemplate.cpp @@ -0,0 +1,19 @@ +#include + +using namespace std; + +class Solution{ + +public: + + //Solution function template... + +}; + +int main( int argc, char* argv[] ){ + + Solution sol; + + //solution function call... + return 0; +} \ No newline at end of file