Sorry if this isnt the right place to ask but heres my problem
I have a 6 digit combination that uses these 5 numbers (2,5,6,8,0). One of these numbers will have to be used twice. How would i go about getting a list of all possible combinations of these 5 numbers being used in a 6 digit combination
Number of possible combinations are 5*(6!/2!) = 1800 (credit to @JMoravitz in the comments)
Here's a simple python code that provides you all combinations (you may run it here)
snapshot result: