Round 1
Questions:
Q: Remove K Digits
Statement:
# Given a number, remove n characters to find the minimum number. # Ex 1: 19345 , n = 3 # Output = 13 # Explanation: Removing 9,4,5 characters results in minimum number # Ex 2: 100200, n = 1 # Output = 200 # Explanation: Removing 1 results in minimum number
Candidate's Approach
No approach provided.
Interviewer's Feedback
No feedback provided.