From 045a72fa77fae66e8181740090176b6e8abeda5d Mon Sep 17 00:00:00 2001 From: Harnirvair Singh Date: Fri, 3 Jan 2020 20:17:46 +0530 Subject: [PATCH] Create xor_of_binary_strings.cpp --- competitive/xor_of_binary_strings.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 competitive/xor_of_binary_strings.cpp diff --git a/competitive/xor_of_binary_strings.cpp b/competitive/xor_of_binary_strings.cpp new file mode 100644 index 0000000..6ed8910 --- /dev/null +++ b/competitive/xor_of_binary_strings.cpp @@ -0,0 +1,18 @@ + #include + using namespace std; + int main(){ + int t; + string a,b; + cin>>t; + while(t--){ + cin>>a>>b; + string res=""; + for(int i=0;i