Bloomberg Interview Guide
Bloomberg is the company on this page most likely to ask you to design classes, not just write a function. Expect object-oriented design as a distinct round or a large chunk of a coding round — model a trading system, an order book, a subscription feed — and expect follow-ups about extension rather than complexity.
The data-structure questions skew toward the practical and composite: LRU caches, iterators, ordered collections, anything where the answer is two structures working together. That maps directly onto this course’s design-problems phase.
The most object-oriented-design-heavy of the common targets. Expect at least one round that is class design rather than an algorithm, and expect follow-ups about extending your design.
The loop
The bar
What they lean on
This is the durable part. Which pattern families a company favours is far more stable than which individual problems it uses, so prepare in this order:
-
design-with-stacks-and-queues -
design-lru-and-lfu-caches -
design-iterators-and-flatteners -
linked-lists -
hash-tables -
strings -
tries
Quirks worth knowing
- The OOD round is close to guaranteed. Practise the parking-lot / elevator / deck-of-cards family, not just algorithms.
- Financial-data framing is common (tickers, order books, time series) but the underlying structures are standard.
- Follow-ups are about change, not scale — "now support a second currency" rather than "now a billion users".
Reported problems
- 1Two Sumeasy
- 20Valid Parentheseseasy
- 121Best Time to Buy and Sell Stockeasy
- 206Reverse Linked Listeasy
- 21Merge Two Sorted Listseasy
- 141Linked List Cycleeasy
- 242Valid Anagrameasy
- 3Longest Substring Without Repeating Charactersmedium
- 153Summedium
- 53Maximum Subarraymedium
- 56Merge Intervalsmedium
- 146LRU Cachemedium
- 11Container With Most Watermedium
- 33Search in Rotated Sorted Arraymedium
- 49Group Anagramsmedium
- 138Copy List with Random Pointermedium
- 143Reorder Listmedium
- 208Implement Trie (Prefix Tree)medium
- 380Insert Delete GetRandom O(1)medium
- 739Daily Temperaturesmedium
- 42Trapping Rain Waterhard
- 295Find Median from Data Streamhard
- 297Serialize and Deserialize Binary Treehard
Pitfalls
Section titled “Pitfalls”- Writing a function when they asked for a design. If the prompt names entities, produce classes with responsibilities and relationships, not one long function.
- Designing for the current requirement only. The follow-up is almost always “now add X”. Leave an obvious extension point and say where it is.
- Over-engineering in the other direction. Five interfaces for a two-entity problem reads as poor judgement. Model what exists, name where you would extend.
- Skipping the composite-structure insight. Most of their data-structure questions want two structures cooperating — a map for lookup plus a linked list for ordering. Saying “neither alone can do both” is the answer they want to hear.
Interview follow-ups
Section titled “Interview follow-ups”| They ask | What they’re checking | The answer |
|---|---|---|
| “Design an order book.” | Whether you model before coding | Name the entities and their responsibilities first — orders, price levels, the book — then the structure per operation: a heap or sorted map per side, a map from order id to node for cancellation. |
| “Now add order cancellation.” | Whether your design has an extension point | This is why you keep an id-to-node map. If your first design cannot cancel in better than , say what you would change rather than defending it. |
| “Why do you need two data structures?” | The composite insight | One gives lookup and no ordering; the other gives ordering and removal of a known node. Neither alone does both — that sentence is the answer. |
| “How would you extend this to multiple instruments?” | Whether the model generalises | A book per instrument behind a registry, and say what becomes shared versus per-instrument. Extension questions are the standard shape here. |
Recall card
Section titled “Recall card”- Most likely to ask for classes, not functions. OOD is a distinct round or a large slice of one.
- Model the entities and responsibilities first, then pick a structure per operation.
- Leave an obvious extension point — the follow-up is always “now add X”. But do not over-abstract.
- Composite structures are the recurring insight: map for lookup + list for ordering, because neither alone does both.
- Practical data structures dominate — caches, iterators, ordered collections. See the design-problems phase.
pch.coffeeTagline
pch.coffeeCtapch.feedbackHeading
pch.feedbackSubheading