1.6 KiB
1.6 KiB
id, localeTitle, challengeType, title
id | localeTitle | challengeType | title |
---|---|---|---|
5 | 5900f3be1000cf542c50fed1 | 5 | Problem 82: Path sum: three ways |
Description
$ \ begin {pmatrix} 131 & 673 & \ color {red} {234} & \ color {red} {103} & \ color {red} {18} \ \ color {rojo} {201} y \ color {rojo} {96} y \ color {rojo} {342} y 965 y 150 \ 630 y 803 y 746 y 422 y 111 \ 537 y 699 y 497 & 121 & 956 \ 805 & 732 & 524 & 37 & 331 \ end {pmatrix} $
Encuentre la suma de ruta mínima, en matrix.txt (haga clic con el botón derecho y "Guardar enlace / Destinar como ... . "), un archivo de texto de 31K que contiene una matriz de 80 por 80, desde la columna de la izquierda hasta la columna de la derecha.
Instructions
Tests
tests:
- text: <code>euler82()</code> debe devolver 260324.
testString: 'assert.strictEqual(euler82(), 260324, "<code>euler82()</code> should return 260324.");'
Challenge Seed
function euler82() {
// Good luck!
return true;
}
euler82();
Solution
// solution required