Reported December 2024
Amazon

Find Number

Reported by candidates from Amazon's online assessment. Pattern, common pitfall, and the honest play if you blank under the timer.

Get StealthCoderRuns invisibly during the live Amazon OA. Under 2s to a working solution.
Founder's read

Amazon's December 2024 OA included a problem called Find Number, and you're probably seeing it in your invite right now. The problem statement alone doesn't tell you much, which is exactly why candidates blank on it live. The title is deliberately vague. StealthCoder reads the full problem text when you're at the screen and feeds you the actual pattern in real time, so you're not guessing at what "find" means in the assessment's specific context.

Pattern and pitfall

Find Number problems on Amazon OAs typically hinge on search optimization or constraint satisfaction. Common flavors: binary search on a sorted array, hash table lookups, mathematical formula derivation, or iterating under hidden bounds. The trick is recognizing whether you're searching a space (binary search), hashing for membership (hash table), or solving for a value algebraically. Candidates often overthink by writing a brute-force loop when the problem expects log(n) or constant time. StealthCoder bridges the gap between seeing the problem cold and knowing which pattern saves you. Read the constraints first. They dictate the algorithm.

If you see this problem in your OA tomorrow, the play is to recognize the pattern in 30 seconds. StealthCoder buys you that recognition.

If this hits your live OA

You can drill Find Number cold, or you can hedge it. StealthCoder runs invisibly during screen share and surfaces a working solution in under 2 seconds. The proctor sees the IDE. They don't see what's behind it. Built by an Amazon engineer who passed his OA cold and still thinks the filter is broken.

Get StealthCoder

Related leaked OAs

⏵ The honest play

You've seen the question. Make sure you actually pass Amazon's OA.

Amazon reuses patterns across OAs. Built by an Amazon engineer who passed his OA cold and still thinks the filter is broken. Works on HackerRank, CodeSignal, CoderPad, and Karat.

Find Number FAQ

What does 'Find Number' actually mean on Amazon OAs?+

It's intentionally vague in the title. Usually you're given a dataset or constraint and asked to locate or compute a specific value. The real problem text defines whether it's a search (use binary search or hash table), a math problem (formula), or a traversal (tree/graph). Don't assume brute force.

Is this a hard problem or medium?+

Amazon OAs rarely ask pure hard problems in the first round. Find Number reported in December 2024 is likely medium. The catch is the wording and missing context. Once you see the full problem statement, the solution often falls into a standard pattern like binary search or hash table lookup.

How do I prepare for Find Number in 48 hours?+

Don't memorize variations. Instead, nail binary search on sorted arrays, hash table existence checks, and simple math (arithmetic, modulo, sums). Amazon OAs reward pattern recognition over edge cases. You have 48 hours, not 48 days. Know when to search vs. when to hash.

What's the most common pitfall on Find Number?+

Candidates write O(n) loops when the problem allows O(log n) binary search. Or they miss that a hash table is faster for membership queries. Read constraints. If n is large (10^5 or more) and you're searching, binary search or hashing beats loops every time.

Will StealthCoder help if I freeze on the problem?+

Yes. If you see Find Number on your assessment and the problem text doesn't click immediately, StealthCoder reads it and identifies the pattern in seconds. It's your safety net for the moment you'd otherwise panic and start typing a slow solution.

Problem reported by candidates from a real Online Assessment. Sourced from a publicly-available candidate-aggregated repository. Not affiliated with Amazon.

OA at Amazon?
Invisible during screen share
Get it