From f575b1bb826bc52532e9215c96ebbd85a7782685 Mon Sep 17 00:00:00 2001 From: Raman Bedi Date: Wed, 7 Nov 2018 17:29:05 +0530 Subject: [PATCH] Fix grammatical mistakes for target-sum-exists --- target-sum-exists/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target-sum-exists/readme.md b/target-sum-exists/readme.md index 57ffd94..97ff49e 100644 --- a/target-sum-exists/readme.md +++ b/target-sum-exists/readme.md @@ -5,7 +5,7 @@ ### Determining if a Target Sum Exists We want to build an algorithm that takes a list of numbers and a target value, -and can well us whether or not it's possible that two numbers in the list sum up +and can tell us whether or not it's possible that two numbers in the list sum up to the requested target. ```javascript @@ -34,7 +34,7 @@ just `test`. You'll notice that the `target-sum-exists.js` file exports two different modules: `targetSumExistsInTwoNumbers` and `targetSumExistsInThreeNumbers`. So -far, we've only bee testing the former function. +far, we've only been testing the former function. Once you have `targetSumExistsInTwoNumbers` passing the first few tests, see if you can make use of it to complete `targetSumExistsInThreeNumbers`.