Leetcode template

This commit is contained in:
2024-04-26 21:21:25 +05:30
parent 8fcec286d5
commit cd58ef959f

19
LeetcodeTemplate.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include <bits/stdc++.h>
using namespace std;
class Solution{
public:
//Solution function template...
};
int main( int argc, char* argv[] ){
Solution sol;
//solution function call...
return 0;
}