Round 1
Questions:
- Given an integer array, find the maximum integer K which appears exactly K times in the array.
- Given a string which only consists of 'A', 'B', 'C' and 'D' characters, return the modified string after removing all occurrences of adjacent 'A', 'B' and adjacent 'B', 'D'. (So basically remove all AB, BA, CD, DC from the string).
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.