Opus 5 glitch text

filter:
user

Explain the following

---

assistant

= int(input())

for _ in range(t):

n = int(input())

a = list(map(int, input().split()))

print(max(a) - min(a))

---

Explain what this code does line by line, including whether the code will actually run