I have the following charset:
qwertyiopnmjk013
I want to generate all possible strings of 6 characters and also all with 7 characters noting that each letter only appears once in the same generated string.
Which is the best form to do it in python? Any example?
Right now I'm copying the charset to another variable and then I start generating picking letters and removing them from the charset then moving forward but I think that's not the best way..