I need help in performing some tasks in that
users := []string{“K1”, “K2”, “K3”, “K4”, “K5”, “K6”, “K7”, “K8”, “K9”, “K10”, “K11”, “K12”, “K13”}
nos := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
pin_alphabets := ////contains all the alphabets i.e A-Z
I need to assign each user with 1 nos. and in each user+nos, assign a set of alphabets.
each pin no should have alphabets A-Z.
eg K1 = 0A, 0B, 0C, 0D etc
K2 = 1A, 1B, 1C, 1D etc
putting in mind that since users are more than nos, the nos that are repeated should also have unique alphabets and should not share same alphabets with users with same nos as them
eg K11 =0?, 0? etc
K12 =1?, 1? etc