Non-Decreasing Array Problem Statement
Given an integer array ARR
of size N
, determine if it can be transformed into a non-decreasing array by modifying at most one element.
An array is defined as non-decreasing if ARR[i] <= ARR[i + 1]
for every index i
where 0 <= i <= N - 2
.
Input:
The first line contains an integer 'T' representing the number of test cases. For each test case, the input consists of:
- An integer
N
indicating the size of the array. - A second line with
N
space-separated integers representing the arrayARR
.
Output:
For each test case, output "true" if the array can be made non-decreasing by modifying at most one element, otherwise output "false".
Example:
Input:
2
4
4 2 3 3
5
4 2 1 5 7
Output:
true
false
Constraints:
1 <= T <= 50
1 <= N <= 10^4
-10^9 <= ARR[i] <= 10^9
Note:
You do not need to print anything yourself. Implement the given function to solve the problem.

AnswerBot
1y
The solution checks if an integer array can become non-decreasing by modifying at most one element.
Iterate through the array and check if there are more than one decreasing pairs of elements.
If there ...read more
IRFAN BEG
11mo
good decision
IRFAN BEG
11mo
thats called time waisting please call me & joined the date
Add answer anonymously...
Josh Technology Group Front end Developer interview questions & answers
A Front end Developer was asked Q. Implement a live coding round to build a small CRUD-based application.
A Front end Developer was asked Q. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, det...read more
A Front end Developer was asked Q. Diameter of a Binary Tree Problem Statement Given a binary tree, return the leng...read more
Popular interview questions of Front end Developer
A Front end Developer was asked Q1. Implement a live coding round to build a small CRUD-based application.
A Front end Developer was asked Q2. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, det...read more
A Front end Developer was asked Q3. Diameter of a Binary Tree Problem Statement Given a binary tree, return the leng...read more
>
Josh Technology Group Front end Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

