← Back to Difficulty Selection
Code Review (Easy): Flexible Log Filtering
Story
Lena noticed that developers at ReviewThat Labs were struggling to find specific build logs because the current search only allowed exact matches. She decided to build a small utility that supports placeholders for unknown parts of a filename or tag. Eva Harrington reviewed the plan and emphasized that the tool must handle both single-letter placeholders and sequences of any length. For instance, a search for "build-*" should correctly identify "build-v1" and "build-final-version", while "data-?" would match "data-1" but ignore "data-10".
Your Task
Read the story and code, then decide if the code is ready for production or needs improvement.
Hints
What would block an approval? Give me a hint.
Next
Check out Next Topic: Tracing Project Tags