Indeed Interview Questions — 7 DSA Problems
7 problems with full solutions in Python, Java, C++, JavaScript, Go, Rust.
Most frequently asked Indeed LeetCode questions for software engineering interviews.
- Sum of Even Numbers After Queries (MEDIUM) — Array, Simulation
- Binary Tree Tilt (EASY) — Tree, Depth-First Search, Binary Tree
- Minimum Cost to Split an Array (HARD) — Array, Hash Table, Dynamic Programming, Counting
- Find Players With Zero or One Losses (MEDIUM) — Array, Hash Table, Sorting, Counting
- Minimum Moves to Equal Array Elements (MEDIUM) — Array, Math
- Merge k Sorted Lists (HARD) — Linked List, Divide and Conquer, Heap (Priority Queue), Merge Sort
- Check if Every Row and Column Contains All Numbers (EASY) — Array, Hash Table, Matrix
I
Indeed
7 questions tracked7 with solutions
Frequency scoreSorted highest → lowest frequency✓ Our Solution = we have a detailed walkthrough
Showing 7 of 7 questions
2TreeDepth-First SearchBinary Tree
3ArrayHash TableDynamic ProgrammingCounting
4ArrayHash TableSortingCounting
6Linked ListDivide and ConquerHeap (Priority Queue)Merge Sort