Question: Write a function, called remove _ dups, that takes a list of tuples and removes any # duplicate tuples and returns the modified list. Cannot

Write a function, called remove_dups, that takes a list of tuples and removes
any
# duplicate tuples and returns the modified list. Cannot use built-in functions nor
# sets.
# For example if the list contains [(1,2),(1,4,5),(1,2),(3,5)] then the
list
# will become [(1,2),(1,4,5),(3,5)].
# (10 points)

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!