We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from SteamBlizzard on Discord:
I'm getting strange errors when I try to see if an integer "i" is in an array "finished_cols":
for i in range(board_size - 1): if not check_space_wrapper(index, i) and i not in finished_cols: spawn(index, i) break
I get "Windows fatal exception: access violation" idk if this is an error on my end or the engine, but when I did this in a separate, isolated test:
test_arr = [1, 5, 7, 10, 2, 2, 17] for i in range(16): if i not in test_arr: print(str(i) + " is not in the array.")
it works just fine
The text was updated successfully, but these errors were encountered:
No branches or pull requests
from SteamBlizzard on Discord:
I'm getting strange errors when I try to see if an integer "i" is in an array "finished_cols":
I get "Windows fatal exception: access violation"
idk if this is an error on my end or the engine, but when I did this in a separate, isolated test:
it works just fine
The text was updated successfully, but these errors were encountered: