ist1 = ['A', 'B','C','E','J',] List2 Letter_combinations repeated_combinations = [] ['A','C','D', 'B','E','Z','B', 'A','F','B','H', 'A'] lef combination(): for i in list1: for j in list2: if (i,j) in letter_combinations: repeated_combinations.append ((i,j)) else: letter_combinations.append ( (i, j)) return (letter_combinations) lef repeats(): for i in list1: for j in list2: if ((i,j) in letter_combinations and (i,j) not in repeated_combinations): repeated combinations.append ((1,j)) elif((i,j) not in letter_combinations): letter_combinations.append ( (i,j)) return (repeated_combinations) rint("letter combinations:") rint(combination(). rint() rint ("repeated_combinations:") rint(repeats())

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter17: Linked Lists
Section: Chapter Questions
Problem 18PE
icon
Related questions
Question

Need a flowchart diagram to illustrate code 

ist1 = ['A','B','C','E','J',1
List2
Letter_combinations = []
repeated_combinations = []
[י'AH',י B',י 'A', ,''B'F', B',י ,''Z'E' , , יDי ,יCי ,'Aי]
lef combination ( ) :
for i in list1:
for j in list2:
if (i,j) in letter_combinations:
repeated_combinations.append ( (i,j))
else:
letter_combinations.append ( (i, j))
return (letter_combinations)
lef repeats():
for i in list1:
for j in list2:
if ((i,j) in letter_combinations and (i,j) not in repeated_combinations):
repeated_combinations.append ( (i,j))
elif((i,j) not in letter_combinations):
letter_combinations.append ( (i,j))
return (repeated_combinations)
rint("letter_combinations:")
rint(combination())
rint()
rint ("repeated_combinations:")
rint(repeats())
Transcribed Image Text:ist1 = ['A','B','C','E','J',1 List2 Letter_combinations = [] repeated_combinations = [] [י'AH',י B',י 'A', ,''B'F', B',י ,''Z'E' , , יDי ,יCי ,'Aי] lef combination ( ) : for i in list1: for j in list2: if (i,j) in letter_combinations: repeated_combinations.append ( (i,j)) else: letter_combinations.append ( (i, j)) return (letter_combinations) lef repeats(): for i in list1: for j in list2: if ((i,j) in letter_combinations and (i,j) not in repeated_combinations): repeated_combinations.append ( (i,j)) elif((i,j) not in letter_combinations): letter_combinations.append ( (i,j)) return (repeated_combinations) rint("letter_combinations:") rint(combination()) rint() rint ("repeated_combinations:") rint(repeats())
Read two lists list1 and list2 containing letters.
declare lists letter_combinations and
repeated_combinations to hold data elements.
loop i=0 to the length of list1
loop j=0 to the length of list2
if (list1[i),list2[j]) exists in letter_combination
then,
Append (list1[i],list2[j]) to
repeated_combinations
otherwise,
Append (list1[i],list2[j]) to letter_combinations
end if
end j
end i
print the lists letter_combinations and
repeated_combinations using a proper method. Privacy - Te
End
Transcribed Image Text:Read two lists list1 and list2 containing letters. declare lists letter_combinations and repeated_combinations to hold data elements. loop i=0 to the length of list1 loop j=0 to the length of list2 if (list1[i),list2[j]) exists in letter_combination then, Append (list1[i],list2[j]) to repeated_combinations otherwise, Append (list1[i],list2[j]) to letter_combinations end if end j end i print the lists letter_combinations and repeated_combinations using a proper method. Privacy - Te End
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 3 images

Blurred answer
Knowledge Booster
Structure chart
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning