
Asked in Josh Technology Group
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
12mo
good decision
IRFAN BEG
12mo
thats called time waisting please call me & joined the date
Add answer anonymously...
Top Front end Developer Interview Questions Asked at Josh Technology Group
Q. Implement a live coding round to build a small CRUD-based application.
Q. Diameter of a Binary Tree Problem Statement Given a binary tree, return the leng...read more
Q. Sort Linked List Based on Actual Values You are given a Singly Linked List of in...read more
Interview Questions Asked to Front end Developer at Other Companies
Top Skill-Based Questions for Josh Technology Group Front end Developer
CSS Interview Questions and Answers
500 Questions
Web Development Interview Questions and Answers
250 Questions
JavaScript Interview Questions and Answers
250 Questions
Algorithms Interview Questions and Answers
250 Questions
HTML Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 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

