fork download
  1. def backtrack(i, j, z):
  2. global max, min
  3. if i - 1 == len(x) and j - 1 == len(y):
  4. if z > max:
  5. max = z
  6. if z < min:
  7. min = z
  8. return
Success #stdin #stdout 0.04s 63652KB
stdin
Standard input is empty
stdout
Standard output is empty