top of page

Looking to master object-oriented and system design for tech interviews or career growth?

  • Improve your system design and machine coding skills.

  • Study with our helpful resources.

  • Prepare for technical interviews and advance your career.

**We're in beta mode and would love to hear your feedback.

Anti Diagonals Interviewbit Solution


Problem Description:

Give a N*N square matrix, return an array of its anti-diagonals. Look at the example for more details.


Example:

Input: 	

1 2 3
4 5 6
7 8 9

Return the following :

[ 
  [1],
  [2, 4],
  [3, 5, 7],
  [6, 8],
  [9]
]
Input : 
1 2
3 4

Return the following  : 

[
  [1],
  [2, 3],
  [4]
]

Solution:


bottom of page