Files
Algorithms-snippets/LeetcodeTemplate.cpp
2024-04-26 22:04:20 +05:30

27 lines
312 B
C++

#include <bits/stdc++.h>
using namespace std;
class Solution{
public:
//Solution function template...
};
int main( int argc, char* argv[] ){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
Solution sol;
//solution function call...
//Extract result and print the solution..
return 0;
}