mirror of
https://github.com/Hizenberg469/Algorithms-snippets.git
synced 2026-04-19 14:42:23 +03:00
Leetcode template
This commit is contained in:
19
LeetcodeTemplate.cpp
Normal file
19
LeetcodeTemplate.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user