From 3c6fe700b36e3c406467bc17a37a9a36811d8edd Mon Sep 17 00:00:00 2001 From: SergeyMerts Date: Wed, 15 Jul 2020 20:38:36 +0300 Subject: [PATCH] Update solution.py --- solution.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solution.py b/solution.py index 2d7c775..c902b52 100755 --- a/solution.py +++ b/solution.py @@ -8,7 +8,7 @@ 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