Home > Data Structures and Algorithms Questions > Write a program to know the house number of the houses that are paying more rent than both the neighbors.
Here's a code snippet to find high paying rent houses.
import java.util.*;
public class Peak {
public static void main(String args[]) {
Scanner sc = new Scanner(System.in);
int N= sc.nextInt();
int arr[]= new int[N];
for(int i=0;i
arr[i] = sc.nextInt();
}
boolean peak= false;
if(arr[0]>arr[1]) {
System.out.print(0+ " ");
peak=true;
}
for(int i=1;i
if(arr[i]> arr[i-1] && arr[i] > arr[i+1]) {
System.out.print(i+ " ");
peak= true;
}
}
if(arr[N-1]>arr[N-2]) {
System.out.print(N-1);
System.out.println(" ");
peak=true;
}
if(peak==false)
System.out.println("-1");
}
}