Autodesk Coding Interview Questions
25 Autodesk coding interview problems with full optimal solutions — 8 easy, 12 medium, 5 hard. Every problem ships with multiple approaches (brute-force first, then the optimal), complexity tables for each, company-specific tips on what an Autodesk interviewer values, and a FAQ section.
Showing 5 problems of 25
- #21hardfoundational
21. Median of Two Sorted Arrays
Find the median of two sorted arrays in logarithmic time.
- #22hardfoundational
22. Trapping Rain Water
Given a histogram, compute how much rain water it can trap.
- #23hardfoundational
23. Merge k Sorted Lists
Merge k sorted linked lists into one sorted linked list.
- #24hardfoundational
24. Largest Rectangle in Histogram
Find the largest rectangle area that can fit under a histogram skyline.
- #25hardfoundational
25. N-Queens
Place n queens on an n x n board so that no two attack each other; return every distinct configuration.