Solve Aptitude Test: Logical, Numerical, Verbal Reasoning
Company: Coinbase
Role: Data Scientist
Category: Coding & Algorithms
Difficulty: medium
Interview Round: Online Assessment
Overview: This question evaluates logical, numerical, and verbal reasoning along with rapid pattern recognition and time-limited decision-making relevant to pre-employment aptitude screens for data science roles.
Constraints
- 1 <= len(times) <= 50
- 0 <= times[i] <= 15
- 0 <= time_limit <= 15
- All values are integers (minutes)
Hints
- Sort the times in non-decreasing order.
- Accumulate durations until the next one would exceed time_limit.
- Zero-time questions can always be included.