mirror of
https://github.com/Hizenberg469/Algorithms-snippets.git
synced 2026-04-19 22:52:23 +03:00
27 lines
338 B
C++
27 lines
338 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;
|
|
} |