My issue
iam unable to solve
My code
# Update the code below to solve this problem
t = int(input())
for _ in range(t):
n = int(input())
alice = list(map(int, input().split()))
bob = list(map(int, input().split()))
salice =0
sbob = 0
mxalice = -1
mxbob=-1
for item in alice:
salice += item
if item>mxalice:
mxalice = item
Learning course: Solve Programming problems using Python
Problem Link: Review problem - 2 Practice Problem in Solve Programming problems using Python - CodeChef