Leetcode Template

This commit is contained in:
2024-04-26 21:23:12 +05:30
parent cd58ef959f
commit 4e247e4e64

View File

@@ -7,7 +7,7 @@ class Solution{
public: public:
//Solution function template... //Solution function template...
}; };
int main( int argc, char* argv[] ){ int main( int argc, char* argv[] ){
@@ -15,5 +15,11 @@ int main( int argc, char* argv[] ){
Solution sol; Solution sol;
//solution function call... //solution function call...
//Extract result and print the solution..
return 0; return 0;
} }