Skip to content

Commit

Permalink
custom-set: Corrected Function Names to match Test (#1590)
Browse files Browse the repository at this point in the history
Fixes #1589
  • Loading branch information
vigneshhari authored and cmccandless committed Nov 13, 2018
1 parent a917fb1 commit e6ed992
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/custom-set/custom_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ def add(self, element):
def intersection(self, other):
pass

def difference(self, other):
def __sub__(self, other):
pass

def union(self, other):
def __add__(self, other):
pass

0 comments on commit e6ed992

Please sign in to comment.