Biggest Element (JS, Nested Arrays)
Дава ми 66/100, мисля, че изпълнявам задачата коректно, макар и да използвам подход от C# за решаване на матрица(масив в масива). Не знам какво точно изисква задачата от JS, ако някой може да погледне и да даде съвет? За първи път решавам подобен тип задача в JS.
https://judge.softuni.org/Contests/Practice/Index/2752#8
Nested Arrays
Biggest Element
Write a function that finds the biggest element inside a matrix.
The input comes as an array of arrays, containing number elements (2D matrix of numbers).
The output is the return value of your function. Find the biggest element and return it.
Examples
Input |
Output |
|
Input |
Output |
[[20, 50, 10], [8, 33, 145]] |
145 |
[[3, 5, 7, 12], [-1, 4, 33, 2], [8, 3, 0, 4]] |
33 |