From 4e247e4e643cd330379407f9bba33ef08832ced7 Mon Sep 17 00:00:00 2001 From: Hizenberg Date: Fri, 26 Apr 2024 21:23:12 +0530 Subject: [PATCH] Leetcode Template --- LeetcodeTemplate.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/LeetcodeTemplate.cpp b/LeetcodeTemplate.cpp index f0e9dde..41a40d1 100644 --- a/LeetcodeTemplate.cpp +++ b/LeetcodeTemplate.cpp @@ -7,7 +7,7 @@ class Solution{ public: //Solution function template... - + }; int main( int argc, char* argv[] ){ @@ -15,5 +15,11 @@ int main( int argc, char* argv[] ){ Solution sol; //solution function call... + + + + //Extract result and print the solution.. + + return 0; } \ No newline at end of file