-
Notifications
You must be signed in to change notification settings - Fork 0
Create remove_duplicates.py #153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
def give_duplicates(list): | ||
#create a set data structure for storing result | ||
result = set() | ||
|
||
#traverse through list once and record duplicates | ||
for x in list: | ||
x = int(x) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you need to typecast to int? |
||
if int(list[abs(x)-1]) < 0: | ||
result.add(x) | ||
else: | ||
list[abs(x)-1] = int(list[abs(x)-1]) - (2 * int(list[abs(x)-1])) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Multiply with -1 instead of subtracting. Easier to read and understand list[abs(x)-1] = -1 * list[abs(x)-1] |
||
|
||
return result | ||
|
||
inp = input("Enter list of integers") | ||
#convert string input into an array | ||
list = inp.split() | ||
print(give_duplicates(list)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Write few tests here using python's assert statement Example: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename list to input
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rename give_duplicates to get_duplicates or find_duplicates