From cbcd75a42cb35c27eee4d3e55fe78dbd8d954a01 Mon Sep 17 00:00:00 2001 From: patriciotrujilllo Date: Wed, 25 Oct 2023 10:48:20 -0300 Subject: [PATCH] Reto #28 resolve --- .../javascript/patriciotrujilllo.js" | 44 +++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 "Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/patriciotrujilllo.js" diff --git "a/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/patriciotrujilllo.js" "b/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/patriciotrujilllo.js" new file mode 100644 index 0000000000..fb57075512 --- /dev/null +++ "b/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/patriciotrujilllo.js" @@ -0,0 +1,44 @@ +/* + * Crea una función que reciba una expresión matemática (String) + * y compruebe si es correcta. Retornará true o false. + * - Para que una expresión matemática sea correcta debe poseer + * un número, una operación y otro número separados por espacios. + * Tantos números y operaciones como queramos. + * - Números positivos, negativos, enteros o decimales. + * - Operaciones soportadas: + - * / % + * + * Ejemplos: + * "5 + 6 / 7 - 4" -> true + * "5 a 6" -> false + */ + +const tuplaOperaciones = ['+','-','*','/','%'] + +const expresionMatematica = (expresion) =>{ + const ToArray = expresion.split(' ') + + for(let i=0;i<=ToArray.length-3;i+=2){ + + if(ToArray.length<3) return false + + if(isNaN(Number(ToArray[i]))){ + return false + } + if(!tuplaOperaciones.includes(ToArray[i+1])){ + return false + } + if(isNaN(Number(ToArray[i+2]))){ + return false + } + return true + } +} + +console.log(expresionMatematica("5 + 6 / 7 - 4"))//---->true +console.log(expresionMatematica("5 * 6 / 7 + 4"))//---->true +console.log(expresionMatematica("5 * 6 / -7 + 4 % 3"))//---->true +console.log(expresionMatematica("-5 * 6 / 7 + 4 % 3"))//---->true +console.log(expresionMatematica("5 a 6")) //---->false +console.log(expresionMatematica("a * 6")) //---->false +console.log(expresionMatematica("5 x 6")) //---->false +console.log(expresionMatematica("5 * b")) //---->false \ No newline at end of file