Question: 1) Write a function called sort_and_rem_dup() that receives a list of numbers and returns a sorted list where the duplicates in the numbers are removed.
1)
Write a function called sort_and_rem_dup() that receives a list of numbers and returns a sorted list where the duplicates in the numbers are removed.
Please note that:
you can choose and implement Selection sort, Insertion sort or Bubble sort.
you cannot use Python Set data structure to remove the duplicates.
you cannot use sort() or sorted() built-in functions for Python list.
2)
Write a function reverse_list() that receives a Python list, builds a Stack with the same elements, and prints the reversed list.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
