search element is 2d matrix, which is sorted row and column wise.

AnswerBot
1y

Search element in a sorted 2D matrix

  • Start from the top right corner or bottom left corner

  • Compare the target element with the current element

  • Move left or down if the target is smaller or move right or ...read more

Harsh Kalburgi
1y

def find_second_min_max(arr):

if len(arr) < 2:

return None, None

# Initialize the first and second minimum and maximum

first_min = second_min = float('inf')

first_max = second_max = float('-inf')

for ...read more

Help your peers!
Add answer anonymously...
Versa Networks Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter