Your solution wouldn't work for some test cases as your A is always [1, 2, 
..., 100]

If the B you received is [101, 102, ..., 199, 1000000000]
In this case, you can never divide them into two sets with equal sum.

在2022年4月18日星期一 UTC-7 08:03:03<karpov...@gmail.com> 写道:

> Hi expert.
> I am a beginner in Python.
> I  try to solve Equal Sum problem, but my submission is failed and I can't 
> see test cases.
> Sample test cases are successful.
> Maybe someone can help with fix code below.
>
> *def getX(nums,x):*
>
> *    for i in nums:*
> *        if sum(x) == sum(nums):*
> *            return x*
>
> *        x.insert(0,i)*
> *        nums.remove(i)*
> *        if sum(x) == sum(nums):*
> *            return x*
> *        elif sum(x) > sum(nums):*
> *            x.remove(i)*
> *            nums.insert(0,i)*
> *        else:*
> *            getX(nums,x)*
>             
> *def main():*
> *    T = int(input())*
> *    for t in range(1, T+1):*
> *        N = int(input())*
>         
> *        A = [i for i in range(N)]*
> *        print(*A, flush=True)*
>         
> *        *B, = map(int, input().split())*
>         
> *        N = A+B*
>         
> *        N.sort(reverse=True)*
>         
> *        X = getX(nums=N,x=[])*
>         
> *        print(*X, flush=True)*
>             
> *main()*
>
> Best Regard, Alex.
>

-- 
-- You received this message because you are subscribed to the Google Groups 
Code Jam group. To post to this group, send email to 
google-code@googlegroups.com. To unsubscribe from this group, send email to 
google-code+unsubscr...@googlegroups.com. For more options, visit this group at 
https://groups.google.com/d/forum/google-code?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Code Jam" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-code+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-code/a184c8f8-55c4-4021-b0d7-23c58d1db161n%40googlegroups.com.

Reply via email to