From 91ca20b8f78eeeb74fc4eea6eeecdca9fefa5656 Mon Sep 17 00:00:00 2001 From: omagdy7 Date: Tue, 1 Nov 2022 11:51:53 +0200 Subject: Added new problems --- codechef/chopSticks/main.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 codechef/chopSticks/main.cpp (limited to 'codechef/chopSticks') 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 + +using namespace std; + +int main () { + ios_base::sync_with_stdio(false); + cin.tie(NULL); + int tt; + cin >> tt; + while(tt--){ + + + } +} -- cgit v1.2.3