Skip to content

Files

Latest commit

 

History

History
20 lines (14 loc) · 391 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 391 Bytes

Remove duplicate from following list

Notes:

  • Accept a list as a parameter from function named solution.
  • Remove all duplicates.
  • Return a list of unique values.

Instructions:

  • Program should be written in file build.py

  • Function name should be solution

  • Input:

      Type: list
      Value: [3,4,3,5,4]
    
  • Expected Output

      Type: list
      Value: [3,4,5]