code:https://ide.codingblocks.com/s/52265
ques: https://hack.codingblocks.com/contests/c/537/217
Unable to pass testcase 2,4 : Sum of two arrays problem
Hey Siddharth, your code is not handling the carry properly, check your code for this case
input:
3
5 5 5
3
5 5 5
your code’s output is:
1, 1, 0, END
but the expected output is:
1, 1, 1, 0, END