From 23a59217e7be9ca15e1701392b48b2bfc506c6a1 Mon Sep 17 00:00:00 2001 From: anna95ml Date: Sun, 9 Oct 2016 22:42:46 +0500 Subject: [PATCH 1/5] =?UTF-8?q?=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=BF=D0=B5=D1=80=D0=B2=D1=8B=D0=B9=20=D0=B2=D0=B0?= =?UTF-8?q?=D1=80=D0=B8=D0=B0=D0=BD=D1=82=20=D1=80=D0=B5=D1=88=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index c749300..e5a766b 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,5 @@ exports.isStar = true; exports.sum = function (a, b) { - // Реализуйте сложение в этой функции + return a + b; }; From 314dcae6a81eccb73caf46975ea2f7c81c38db33 Mon Sep 17 00:00:00 2001 From: anna95ml Date: Sun, 9 Oct 2016 22:59:15 +0500 Subject: [PATCH 2/5] =?UTF-8?q?=D0=92=D1=82=D0=BE=D1=80=D0=B0=D1=8F=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math.js b/math.js index e5a766b..0c15847 100644 --- a/math.js +++ b/math.js @@ -2,6 +2,6 @@ exports.isStar = true; -exports.sum = function (a, b) { - return a + b; +exports.sum = function (a, b, с) { + return a + b +с; }; From 8ecd3cb211335ea2f8576b4608a5ff80cffbed90 Mon Sep 17 00:00:00 2001 From: anna95ml Date: Sun, 9 Oct 2016 23:06:21 +0500 Subject: [PATCH 3/5] Update math.js --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index 0c15847..5ad5272 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,5 @@ exports.isStar = true; exports.sum = function (a, b, с) { - return a + b +с; + return (a + b) +с; }; From de3d486919b37bdd738998ab89033220c1edda20 Mon Sep 17 00:00:00 2001 From: anna95ml Date: Sun, 9 Oct 2016 23:07:37 +0500 Subject: [PATCH 4/5] =?UTF-8?q?=D1=82=D1=80=D0=B5=D1=82=D1=8C=D1=8F=20?= =?UTF-8?q?=D0=BF=D1=80=D0=B0=D0=B2=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index 5ad5272..cc984b2 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,5 @@ exports.isStar = true; exports.sum = function (a, b, с) { - return (a + b) +с; + return (a + b) + с; }; From e9d9333c7c156925160c9202897a34d9ef9c2d49 Mon Sep 17 00:00:00 2001 From: anna95ml Date: Sun, 9 Oct 2016 23:12:11 +0500 Subject: [PATCH 5/5] =?UTF-8?q?=D0=B1=D0=B5=D0=B7=20=D0=B4=D0=BE=D0=BF?= =?UTF-8?q?=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- math.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math.js b/math.js index cc984b2..e5a766b 100644 --- a/math.js +++ b/math.js @@ -2,6 +2,6 @@ exports.isStar = true; -exports.sum = function (a, b, с) { - return (a + b) + с; +exports.sum = function (a, b) { + return a + b; };