Challenge: Filter Failure Messages
Tarea
Swipe to start coding
Imagine you have a list of system messages, and you need to extract only those containing the word "failure".
Write a program that creates a new array with only these messages and then prints them to the console.
- In the
extractFailureLogs()method, loop through thelogsarray and check each message for the presence of the keyword "failure" (case-insensitive, using thetoLowerCase()method). - Count how many messages contain the word "failure" and store the result in a variable
count. - Loop through the
logsarray again, and add only the messages containing "failure" into theerrorLogsarray.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 32
single
Pregunte a AI
Pregunte a AI
Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla
Genial!
Completion tasa mejorada a 2.86
Challenge: Filter Failure Messages
Desliza para mostrar el menú
Tarea
Swipe to start coding
Imagine you have a list of system messages, and you need to extract only those containing the word "failure".
Write a program that creates a new array with only these messages and then prints them to the console.
- In the
extractFailureLogs()method, loop through thelogsarray and check each message for the presence of the keyword "failure" (case-insensitive, using thetoLowerCase()method). - Count how many messages contain the word "failure" and store the result in a variable
count. - Loop through the
logsarray again, and add only the messages containing "failure" into theerrorLogsarray.
Solución
¿Todo estuvo claro?
¡Gracias por tus comentarios!
Sección 1. Capítulo 32
single