Skip to content

Commit

Permalink
fix sum
Browse files Browse the repository at this point in the history
  • Loading branch information
mvieitesdiaz committed Jul 14, 2020
1 parent 7157754 commit 8636c1f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions solution.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@

def predict(data):
""" get two colums from `df` and returns the predicted ouput as a column (pd.Series)
TODO: modify it
"""
result = data['col1'] - data['col2']
result = data['col1'] + data['col2']
return result


Expand Down

0 comments on commit 8636c1f

Please sign in to comment.