We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- Algorithms
- Debugging
- XOR Strings
- Discussions
XOR Strings
XOR Strings
Sort by
recency
|
92 Discussions
|
Please Login in order to post a comment
Many languages where there is no code should be hidden... if that a thing. And something's wrong with C++ grader?
The C code is almost blank, just the main function and not the strings_xor function. So i had to create the code by myself so of course it doesn't work since the main condition isn't satisfied (just 3 lines)...
C implementation :
C# implementation:
Compiler is saying "Wrong Answer".
include
using namespace std;
string strings_xor(string s, string t) {
}
int main() { string s, t; cin >> s >> t; cout << strings_xor(s, t) << endl; return 0; } ** still the compiler is saying "Wrong Answer"
the
Here is my Python solution!