Skip to content

Commit

Permalink
Removed unnecessary blank lines
Browse files Browse the repository at this point in the history
  • Loading branch information
mybrainishuge committed Mar 28, 2016
1 parent 8f117d1 commit a6fbcd0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/recursion.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ var sum = function(array) {

// 3. Sum all numbers in an array containing nested arrays.
// Example: arraySum([1,[2,3],[[4]],5]); // 15
var arraySum = function(arr) {
var arraySum = function(array) {
};

// 4. Check whether a number is even or not.
// 4. Check if a number is even.
var isEven = function(n) {
};

Expand Down

0 comments on commit a6fbcd0

Please sign in to comment.