top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Given a matrix which is spirally sorted, remove an element and insert another element maintaining the sorted order?

+1 vote
363 views
Given a matrix which is spirally sorted, remove an element and insert another element maintaining the sorted order?
posted Jun 16, 2016 by anonymous

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+4 votes

Given a dictionary of strings and another string find out if the string is an exact match to some words in the dictionary or varies at most in only one place of some word of the dictionary?

0 votes

Given an array of sorted integers and find the closest value to the given number. Array may contain duplicate values and negative numbers.

Example : Array : 2,5,6,7,8,8,9
Target number : 5
Output : 5

Target number : 11
Output : 9

Target Number : 4
Output : 5

...