From d08f8e26d5f9211781dfd200e398a230a5d8d04a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D0=B0=D0=BC=D0=B0=D1=80=D0=B0?= <32191326+taff42@users.noreply.github.com> Date: Wed, 4 Oct 2017 17:29:50 +0500 Subject: [PATCH 1/3] =?UTF-8?q?1=20=D0=B2=D0=B0=D1=80=D0=B8=D0=B0=D0=BD?= =?UTF-8?q?=D1=82=20=D1=80=D0=B5=D1=88=D0=B5=D0=BD=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..0a92ba2 100644 --- a/math.js +++ b/math.js @@ -3,5 +3,5 @@ exports.isStar = true; exports.sum = function (a, b) { - // Реализуйте сложение в этой функции + return a+b;// Реализуйте сложение в этой функции }; From 54fe9e4d9fca84e8a1c21ccfc35d929df09c0c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D0=B0=D0=BC=D0=B0=D1=80=D0=B0?= <32191326+taff42@users.noreply.github.com> Date: Wed, 4 Oct 2017 17:54:41 +0500 Subject: [PATCH 2/3] Update math.js --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index 0a92ba2..7b7b4c3 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 2ba21e29d6136b5f4f4a002ca80768f2e8d224ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A2=D0=B0=D0=BC=D0=B0=D1=80=D0=B0?= <32191326+taff42@users.noreply.github.com> Date: Wed, 4 Oct 2017 18:09:42 +0500 Subject: [PATCH 3/3] Update math.js --- math.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/math.js b/math.js index 7b7b4c3..c932145 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); };