Skip to main content

Bloomberg Coding Interview Questions

32 Bloomberg coding interview problems with full optimal solutions — 16 easy, 13 medium, 3 hard. Every problem ships with multiple approaches (brute-force first, then the optimal), complexity tables for each, company-specific tips on what an Bloomberg interviewer values, and a FAQ section.

Showing 3 problems of 32

  • #23hardfoundational

    23. Merge K Sorted Lists

    Bloomberg's order-book engine merges price-sorted queues from dozens of exchanges every microsecond — this problem tests whether you can do the same efficiently using a min-heap instead of naive repeated merging.

  • #42hardfoundational

    42. Trapping Rain Water

    Calculating trapped water between histogram bars maps directly onto Bloomberg's time-series gap analysis — measuring how much volume pools between market microstructure events — and rewards the two-pointer insight that eliminates extra passes.

  • #295hardfoundational

    295. Find Median from Data Stream

    Bloomberg's real-time analytics dashboard streams millions of trade prices per day and must serve a live median price metric at sub-millisecond latency — this problem tests the two-heap trick that keeps median retrieval O(1) even as data flows in.

Related interview-prep guides

Interview Platforms

HackerRank Tech Interview Guide 2026: What It Tests, How It Tracks You, and the Modern Setup

HackerRank is a browser-sandboxed coding-assessment platform that tests algorithms, SQL, and role-specific skills, and logs every keystroke, paste, and tab-focus change inside its own tab. As of the 2026 hiring cycle it is still the volume leader in first-round technical screens. Its detection ends at the browser boundary: it sees nothing running elsewhere on your machine.

Interview Process

The 2026 CS New-Grad Interview Loop: Phone Screen to Offer at Every Tier

The 2026 CS new-grad interview loop runs five steps (recruiter screen, technical screen, onsite, debrief, offer) but the shape of each step now depends on tier of company. This guide maps the loop for FAANG, mid-tier public, startup, consultancy, and research lab, with 2026 timelines and how AI-fraud concerns brought in-person rounds back.

Interview Process

Technical Phone Screen: Tips, Questions, and Tactics for CS New Grads (2026)

A technical phone screen is a 30-60 minute coding interview on a shared editor, audio-only or light-video, that decides whether you advance to the onsite. It scores three things at once: can you clarify, code, and talk through your reasoning live. New grads who treat it as a pure coding test get rejected even with working code, because the verbal layer is half the rubric. These technical phone interview tips cover the format, the questions, 24-hour prep, and the freeze recovery that gets you to the offer.

Bloomberg Coding Interview Questions — Full Solutions — InterviewChamp.AI