Skip to content

Commit

Permalink
changed varible name
Browse files Browse the repository at this point in the history
  • Loading branch information
umuttrk committed Oct 17, 2023
1 parent eafac70 commit 0ce43f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Week02/sequences_umutcan_turk.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
"headset":120
}

def remove_duplicates(listParam):
def remove_duplicates(list_instance):
new_list = []
for key in listParam:
for key in list_instance:
if key not in new_list:
new_list.append(key)
return new_list
Expand Down

0 comments on commit 0ce43f0

Please sign in to comment.