Skip to content

Latest commit

 

History

History
60 lines (45 loc) · 1.43 KB

solution_template.md

File metadata and controls

60 lines (45 loc) · 1.43 KB

Description

Story

Story from the online judge site

Solutions

1

Solution approach

Solution approach is optional, but we encourage you to add it.

Source Code

Add your source code here with marking your source language

// problem_name: problem name // no need to add if you already added on the top, else add it
// problem_link: problem url // no need to add if you already on the top, else add it
// author: shortname of author

// other_tags: 

#include <bits/stdc++.h>
using namespace std;

int main() {
    // ...
    // ...
    return 0;
}

2

Solution approach

Solution approach is optional, but we encourage you to add it.

Source Code

Add your source code here with marking your source language

// problem_name: problem name // no need to add if you already added on the top, else add it
// problem_link: problem url // no need to add if you already on the top, else add it
// author: shortname of author

// other_tags: 

#include <bits/stdc++.h>
using namespace std;

int main() {
    // ...
    // ...
    return 0;
}