Main Navigation
Share your interview in your own words — our AI handles the rest. Hardly takes 2 minutes.
Practice mock interviews or book a 1:1 call for career guidance, resume reviews, and more.
AI interview prep powered by real interview data.
Connect with us on social media
Interview experiences & questions tagged Matrix
Given a matrix, find the maximum sum path from top-left to bottom-right. You can only move right or down at any point in time. For example, given the matrix [[1, 2, 3], [4, 5, 6]], the maximum sum path is 1 → 2 → 5 → 6 = 14.
Given a binary matrix, find the maximum size square sub-matrix that contains all 1s. For example, given the binary matrix: 0 1 1 0 1 1 1 0 1 0 0 1 1 1 0 1 1 1 1 0 1 1 1 1 1 0 0 0 0 0 what would be the output?
Coming Soon