diff options
Diffstat (limited to 'codechef/chopSticks')
| -rw-r--r-- | codechef/chopSticks/main.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/codechef/chopSticks/main.cpp b/codechef/chopSticks/main.cpp new file mode 100644 index 0000000..5f6862e --- /dev/null +++ b/codechef/chopSticks/main.cpp @@ -0,0 +1,14 @@ +#include<bits/stdc++.h> + +using namespace std; + +int main () { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while(tt--){ + + + } +} |
