interview-challenges
interview-challenges copied to clipboard
A set of interview challenges excercises
Buenas 👋, Tengo una duda en el ejercicio del Isograma. La duda es en cuanto a que significa hacer un cleanup de la palabra. Un saludo, muchas gracias
Buenas 👋, Propongo cambiar el método para checkear si los arrays son iguales en el ejercicio “elementos-pares”. Según tengo entendido el método de vitest toBe es para la comparación de...
toBe se utiliza para comparar valores primitivos y objetos literales. Para comparar arrays, deberia usarse toEqual en su lugar.
La media entre 20 y 21 == 20.5 y no 21.
Este error aparece en main.tsx: 'App' cannot be used as a JSX component. Its return type 'Element | "Loading..."' is not a valid JSX element. Type 'string' is not assignable...
sesion-7/anagramas Adds a new test case to the sonAnagramas test suite to ensure the algorithm correctly handles words with repeated letters. The new case checks that words containing the same...
Fix readme data type returned for id should be int
if I understood the isograma´s logic 'reto' should return 'true', no? ``` //ISOGRAMAS (JavaScript) const isograma = (palabras) => { let diccionario = new Map(); //string vacio if(palabras.trim().length === 0){...