Can anyone spot the flaw in my code?

In the mysterious country of Byteland, everything is quite different from what you’d normally expect. In most places, if you were approached by two mobsters in a dark alley, they would probably tell you to give them all the money that you have. If you refused, or didn’t have any - they might even beat you up.

In Byteland the government decided that even the slightest chance of someone getting injured has to be ruled out. So, they introduced a strict policy. When a mobster approaches you in a dark alley, he asks you for a specific amount of money. You are obliged to show him all the money that you have, but you only need to pay up if he can find a subset of your banknotes whose total value matches his demand. Since banknotes in Byteland can have any positive integer value smaller than one thousand you are quite likely to get off without paying.

Both the citizens and the gangsters of Byteland have very positive feelings about the system. No one ever gets hurt, the gangsters don’t lose their jobs, and there are quite a few rules that minimize that probability of getting mugged (the first one is: don’t go into dark alleys - and this one is said to work in other places also).

Input

The first line contains integer t , the number of test cases (about 100). Then t test cases follow. Each test case starts with n , the number of banknotes in your wallet, and m , the amount of money the muggers asked of you. Then n numbers follow, representing values of your banknotes. Your wallet does not hold more than 20 banknotes, and the value of a single banknote is never more than 1000.

Output

For each test case output a single line with the word ‘Yes’ if there is a subset of your banknotes that sums to m , and ‘No’ otherwise

Blockquote
try:

for _ in range(int(input())):

    n,m = map(int,input().split())

    mny = []

    for _ in range(n):

        mny.append(int(input()))

    mny.sort()

    mny.reverse()

    money = 0

    if n!=0 and m == 0:

        print('Yes')

    elif n == 0 and m!=0:

        print('No')

    

    else:

        for l in mny:

            if money+l>m:

                continue

            else:

                money+=l

        if money == m:

            print('Yes')

        else:

            print('No')

except EOFError:

pass