1. def main() :
  2. n = raw_input()
  3. n = [int(i) for i in n.split(" ")]
  4. total = n.pop(0)
  5. n.sort()
  6. total = total -1
  7. group = []
  8. for i in range(len(n)/2):
  9. group.append(n[i]+n[total])
  10. total = total -1
  11. return max(group) - min(group)
  12.  
  13. t = raw_input()
  14. response = []
  15. for i in range(int(t)):
  16. response.append(main())
  17. for n in response:
  18. print n
Language: Python