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.
Hi there, my code seems to be right and performed only three changes as asked. However even "Your Output" matching "Expected Output", it is counting as failure and not passing the test. Is it common?
Zig Zag Sequence
You are viewing a single comment's thread. Return to all comments →
Hi there, my code seems to be right and performed only three changes as asked. However even "Your Output" matching "Expected Output", it is counting as failure and not passing the test. Is it common?
code:
Input (stdin) 1 7 1 2 3 4 5 6 7
Your Output (stdout) 1 2 3 7 6 5 4
Expected Output 1 2 3 7 6 5 4
Does anyone have a hint of what may be happening?