Skip to main content

Intuit Coding Interview Questions

25 Intuit coding interview problems with full optimal solutions — 15 easy, 7 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 Intuit interviewer values, and a FAQ section.

Showing 4 problems of 25

  • #16mediumfrequently asked

    16. Number of Islands

    Count the number of connected '1' regions in a 2D grid of '1' (land) and '0' (water). Intuit asks this as the canonical DFS/BFS-on-grid problem and reframes it as 'count distinct expense clusters' for financial-graph candidates.

  • #17mediumfrequently asked

    17. LRU Cache

    Design an LRU (least-recently-used) cache with O(1) get and put. Intuit asks this to test data-structure composition (hash + doubly-linked list) and reframes it as 'cache the last N tax-form lookups' for TurboTax candidates.

  • #18mediumfrequently asked

    18. Course Schedule

    Given a list of courses with prerequisites, determine whether you can complete all courses (i.e., the dependency graph has no cycle). Intuit asks this to test cycle detection and reframes it as 'detect circular dependencies in a tax-form rule tree.'

  • #22mediumfrequently asked

    22. Coin Change

    Given coin denominations and a target amount, find the fewest coins needed to make the amount. Intuit asks this constantly — it maps directly to giving change in QuickBooks POS and to optimal-payment-plan calculations in TurboTax.

Related interview-prep guides

Interview Platforms

Codility for Tech Interviews in 2026: The Complete Guide for Candidates

Codility is the dominant algorithmic-assessment platform across European tech hiring. Heavy in the UK, Germany, Netherlands, Nordics, and Poland where the company was founded. It scores candidates on both correctness and time complexity, runs 60-to-120-minute timed tests, and ships three products: Tests, CodeCheck, and CodeLive. This guide is what 2026 candidates need to know.

Interview Platforms

Karat Technical Interview Guide 2026: How the Third-Party Loop Actually Works

Karat is technical-interview-as-a-service. Karat-employed engineers run the technical loop for the hiring company in Karat's own recorded video and coding environment. The dynamic is different from an in-house interview: the interviewer is a contractor, not a future teammate, the rubric is fixed, the session is recorded for asynchronous review, and the hiring team's engineers watch the playback a day later. This guide is the practical map of how that loop works in 2026 and how a modern desktop setup runs alongside it.

Interview Platforms

Hatchways Tech Interview Assessment: The Complete 2026 Guide for Early-Career Devs

Hatchways is a project-based assessment and portfolio platform aimed at early-career developers: bootcamp grads, recent CS grads, and junior engineers funneled through Springboard's hiring partner network since the 2022 acquisition. Assessments take hours to days, not minutes, and the artifact reviewers see is a deployed app plus commit history plus an optional video walkthrough.

Intuit Coding Interview Questions — Full Solutions — InterviewChamp.AI