Brute forcing a 2 character code

Hello. I am struggling to code an app that can brute force a two character code that has a letter and number. The code I have so far errors out because of bad arguments. I am unsure how to continue because I have never attempted something like this before. Thanks.

For me, none of the blocks in Button2.Click make any sense. Your use of the while test will not work, do not use it.

Explain what you want to do.
(it is easy enough to find the value in global Code if we know what the parameters are (e.g. A-Z, 0-9)

What I’m trying to do is try to break a code like a1 or 1a but I have it a-j just to keep my iPad from freezing

Make a list containing A to Z and 0 to 9 (big list)
Split global code into a list (code list)
Test each code list item against your big list
You have your code

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.