Wise Coding Interview Questions
26 Wise coding interview problems with full optimal solutions — 13 easy, 10 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 Wise interviewer values, and a FAQ section.
Showing 13 problems of 26
- #1easyfoundational
1. Two Sum
Find two indices whose values sum to a target, a daily warm-up at Wise where matching one transfer leg to another is the bread and butter.
- #2easyfoundational
2. Valid Parentheses
Validate that a string of brackets is balanced — a classic stack warm-up before Wise drills you on ledger entries that must balance debits and credits.
- #3easyfoundational
3. Merge Two Sorted Lists
Merge two sorted linked lists into one — Wise frames this around merging two sorted FX rate feeds into a single time-ordered stream.
- #4easyfoundational
4. Remove Duplicates from Sorted Array
Dedup a sorted array in place — Wise sometimes wraps this around deduping repeated FX quote ticks before they hit the matching engine.
- #5easyfoundational
5. Remove Element
Remove all occurrences of a value in place — Wise frames this as scrubbing a failed-transfer flag from a batch payout array before settlement.
- #6easyfoundational
6. Search Insert Position
Find the index where a target should be inserted to keep an array sorted — Wise uses this to test if you can insert a new FX quote into a sorted price ladder.
- #7easyfoundational
7. Plus One
Increment a number represented as a digit array — Wise loves this because it directly probes integer-overflow thinking essential for money math.
- #8easyfoundational
8. Single Number
Find the one unpaired transaction in a stream where every other entry has a matching counter-entry — a tiny model of ledger reconciliation at Wise.
- #9easyfoundational
9. Linked List Cycle
Detect whether a singly linked list contains a cycle — a cheap probe of pointer hygiene, exactly the discipline Wise needs in their settlement engine.
- #10easyfoundational
10. Best Time to Buy and Sell Stock
Find the maximum profit from one buy/sell in an FX-style price series — a thinly disguised cross-border arbitrage matching question.
- #11easyfoundational
11. Contains Duplicate
Detect any duplicate value in an array — Wise uses this as a warm-up for double-debit detection in payment idempotency tests.
- #12easyfoundational
12. Missing Number
Find the missing value in 0..n with one slot absent — a clean stand-in for the missing-leg detector in a double-entry ledger.
- #13easyfoundational
13. Move Zeroes
Push zeros to the end of an array in place while preserving order — Wise treats this as a stand-in for cleaning up empty payment legs without losing real entries.