Squarespace Coding Interview Questions
25 Squarespace coding interview problems with full optimal solutions — 12 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 Squarespace interviewer values, and a FAQ section.
Showing 3 problems of 25
- #23hardfoundational
23. Median of Two Sorted Arrays
Compute the median of two sorted arrays without merging them; Squarespace uses it to test binary-search-on-partition fluency.
- #24hardfoundational
24. Trapping Rain Water
Compute how much water an elevation map traps after raining; Squarespace uses it to test whether you can reduce O(n) prefix arrays to a constant-space two-pointer pass.
- #25hardfoundational
25. Merge k Sorted Lists
Merge k sorted linked lists into one sorted list; Squarespace uses it to test whether you reach for a min-heap or pairwise merge to beat the naive O(k*N) concatenation.