Solución
solution.tsTypeScript
export function searchMatrix(matrix: number[][], target: number): boolean {
// Escribe tu solución aquí
for(const row of matrix) {
if(row.includes(target)){
return true;
}
}
return false;
}0respuestas