playground updated

This commit is contained in:
Hizenberg469
2024-11-30 23:25:28 +05:30
parent 9415c7f0c7
commit b46c486580
20 changed files with 837 additions and 566 deletions

View File

@@ -1,27 +1,27 @@
#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;
#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;
}