Created
November 30, 2016 21:00
-
-
Save Hoxtygen/cfae989e83dddc7023c80ef9fc139924 to your computer and use it in GitHub Desktop.
A solution to FCC challenge
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function largestOfFour(arr) { | |
// You can do this! | |
var result = []; | |
for (var i = 0; i < arr.length; i++) { | |
var largest = 0; | |
for (var j = 0; j < arr[i].length; j++) { | |
if (arr[i][j] > largest) { | |
largest = arr[i][j]; | |
} | |
} | |
result[i] = largest; | |
} | |
return result; | |
} | |
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment