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 array ARR.

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.
Be the first one to answer
Add answer anonymously...
Citicorp Software Developer 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

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