string1 = "ABC"
string2 = "DEF"
string3 = "GHIJ"
Output : "ADG", "ADH", "ADI", "ADJ", "AEG", "AEH", "AEI", "AEJ", "AFG", "AFH", "AFI", "AFJ" same way for b and c Using recursive approach would be a great help..
string1 = "ABC"
string2 = "DEF"
string3 = "GHIJ"
Output : "ADG", "ADH", "ADI", "ADJ", "AEG", "AEH", "AEI", "AEJ", "AFG", "AFH", "AFI", "AFJ" same way for b and c Using recursive approach would be a great help..
Copyright © 2021 Jogjafile Inc.
This method doesn't use recursion but is, in my opinion, the easiest way to generate the required permutations.
Test:
Output: