
Asked in Walmart
Consecutive Elements
Given an array arr
of N
non-negative integers, determine whether the array consists of consecutive numbers. Return true if they do, and false otherwise.
Input:
The first line of input contains a single integer T, representing the number of test cases or queries. Each test case includes two lines: The first line contains an integer 'N', the length of the array. The second line contains 'N' space-separated integers representing the elements of the array.
Output:
For each test case, print “True” or “False” in separate lines to indicate whether the elements of the array are consecutive.
Example:
Input:
T = 1
N = 3
arr = [4, 3, 5]
Output:
True
Constraints:
1 ≤ T ≤ 10
1 ≤ N ≤ 10^5
0 ≤ arr[i] < 10^9
Note:
No need to print the expected output, just implement the function logic.

AnswerBot
4mo
Check if an array of integers consists of consecutive numbers.
Iterate through the array and check if the absolute difference between consecutive elements is 1.
Sort the array and check if the elements ...read more
Help your peers!
Add answer anonymously...
Top Software Developer Interview Questions Asked at Walmart
Q. Tell me about yourself.
Q. How many languages do you know?
Q. What are your strengths?
Interview Questions Asked to Software Developer at Other Companies
Top Skill-Based Questions for Walmart Software Developer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Software Development 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

