Files
Algorithms-snippets/LeetcodeTemplate.cpp
2024-04-26 21:23:12 +05:30

25 lines
255 B
C++

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