-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIncreasing.java
More file actions
36 lines (33 loc) · 754 Bytes
/
Increasing.java
File metadata and controls
36 lines (33 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import java.util.*;
import java.lang.*;
import java.io.*;
public class Increasing
{
public static void main (String[] args) throws java.lang.Exception
{ Scanner sc=new Scanner(System.in);
int t=sc.nextInt();
while(t--!=0)
{
int a=sc.nextInt();
int arr[]=new int[a];
for(int i=0;i<a;i++)
{
arr[i]=sc.nextInt();
}
Arrays.sort(arr);
boolean found=true;
for(int i=0;i<a-1;i++)
{
if(arr[i]>=arr[i+1])
{
found=false;
}
}
if(found)
System.out.println("Yes");
else
System.out.println("No");
}
sc.close();
}
}