Technical2026-08-12
Given an array of strings and an array of characters, for each string, count how many characters from the given character array appear in it. If the count is even, keep the string unchanged; if odd, reverse the string. Return a new array of strings with the processed results.
Context & Summary
Coding problem involving string manipulation and character matching.
💻 Coding practice works best on desktop.
Code editors are too cramped on mobile screens.
Conceptual Question
This appears to be a conceptual, design, or behavioral question rather than an algorithmic coding problem. The code editor and automated test cases have been disabled for this question.
Back to questions
InterviewDigest