from itertools import permutations
x = int(input())
for i in range(x):
num0, num1 = map(int, input().split(' '))
Str = "0" * (int(num0) - int(num1)) + "1" * int(num1)
res = permutations(Str)
for k in sorted(set(res)):
print("".join(str(j) for j in k))
在VScode output是正確的 但丟進來測試就會噴以下錯誤
有在stackoverflow找到一樣的錯誤 看到有解法是先轉float再轉int
但因為num0和num1讀進來我就把他map成int 所以這個解法不太適用我的問題
想問問有人知道哪邊錯了嗎?