class CircularArray: definit_(self, lin, st, sz): Variables # Initializing self.start = st self.size = sz self.cir = []*len (lin) "''the method take another circular array and returns a linear array containing the common elements between the two circular arrays. ''' def intersection(self, c2): # To Do pass # Remove this line print("============Test 10====: :") lin_arr9 = [10, 20, 30, 40, 50, None, None, None] c10 = CircularArray (lin_arr9, 5, 5) c10.printFullLinear() # This should print: 40, 50, None, None, None, 10, 20, 30 lin_arr10 = [5, 40, 15, 25, 10, 20, 5, None, None, None, None, None] c11 = CircularArray (lin_arr10, 8, 7) c11.printFullLinear() # This should print: 10, 20, 5, None, None, None, None, None, 5, 40, 1 output= c10. intersection (c11) print (output) # This should print: [10, 20, 401

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter8: Arrays
Section: Chapter Questions
Problem 9PE
icon
Related questions
Question
Use python and do not use any library. Remove the pass line and complete the code after #todo section
class CircularArray:
def __init__(self, lin, st, sz):
# Initializing Variables
self.start = st
self.size = sz
self.cir = []*len (lin)
"the method take another circular array and returns a linear array
containing the common elements between the two circular arrays.'
def intersection(self, c2):
# To Do
pass # Remove this line
print("===========Test 10===
=")
lin_arr9 = [10, 20, 30, 40, 50, None, None, None]
c10 = CircularArray (lin_arr9, 5, 5)
c10.printFullLinear() # This should print: 40, 50, None, None, None, 10, 20, 30
lin_arr10 = [5, 40, 15, 25, 10, 20, 5, None, None, None, None, None]
c11 = CircularArray (lin_arr10, 8, 7)
c11.printFullLinear() # This should print: 10, 20, 5, None, None, None, None, None, 5, 40, 15, 25
output = c10. intersection (c11)
print (output) # This should print: [10, 20, 40]
Transcribed Image Text:class CircularArray: def __init__(self, lin, st, sz): # Initializing Variables self.start = st self.size = sz self.cir = []*len (lin) "the method take another circular array and returns a linear array containing the common elements between the two circular arrays.' def intersection(self, c2): # To Do pass # Remove this line print("===========Test 10=== =") lin_arr9 = [10, 20, 30, 40, 50, None, None, None] c10 = CircularArray (lin_arr9, 5, 5) c10.printFullLinear() # This should print: 40, 50, None, None, None, 10, 20, 30 lin_arr10 = [5, 40, 15, 25, 10, 20, 5, None, None, None, None, None] c11 = CircularArray (lin_arr10, 8, 7) c11.printFullLinear() # This should print: 10, 20, 5, None, None, None, None, None, 5, 40, 15, 25 output = c10. intersection (c11) print (output) # This should print: [10, 20, 40]
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Array
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
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,