Question: Write a python program for given Algorithm: 1 . Every string of length 5 should have any duplicate 2 . Exactly one common alphabet between

Write a python program for given Algorithm:
1.Every string of length 5 should have any duplicate
2. Exactly one common alphabet between all the strings
For example I am providing here for length 3.
length three means we have three alphabet A, B, C
Possible sequences according to our algorithm is
Sequence1:A B C
Sequence 2:A D E
Sequence 3:A F G
Sequence 4:B D F
Sequence 5:B E G
Sequence 6:C D G
Sequence 7:C E F
Explanation: here in each sequence only one common element for example here in sequence 1 and sequence only one "A" common character. Similary if take any two sequences and perform intersection you will get only one common character. So if you take any sequence and perform intersection there will be maximum 1 common charcter.
Here with 3 alphabet total 7 possible combination , and 3 charcters means A can come maximum three time only. Similarly B and C can come three times only, and each combination there is only one common element , And in this suppose we interchanged C and D than possible sequences are:
A B D
A C E
A F G
B C F
B E G
D C G
D E F
YOUR TASK: To write a python program for length 3 and print all possible sequences and after interchanging values print also what are the sequences .
And than increase the length of character 5(A B C D E) and print all possible sequences based on algorithms . USE the character from A ... U.There should be only one character common in each sequence. So one character can come maximum five times.
NOTE: If program will not run in my system according my requiremnt i will not give positive feedback.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!