-
Notifications
You must be signed in to change notification settings - Fork 0
/
a_115_PS_ArrayList.java
65 lines (52 loc) · 1.6 KB
/
a_115_PS_ArrayList.java
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import java.util.ArrayList;
public class a_115_PS_ArrayList {
public static boolean monotonic(ArrayList<Integer> num ){
for(int i=0; i<num.size()-1; i++){
if(num.get(i) > num.get(i+1)){
return false ;
}
}
return true ;
}
public static boolean lonelyNumbers(ArrayList<Integer> num , int key){
for(int i=0; i<num.size(); i++){
for(int j=i+1; j<num.size(); j++){
if(num.get(i) == num.get(j)){
return false ;
}
}
}
return true ;
}
public static boolean isSafe(ArrayList<Integer> num, int N){
for(int i=0; i<num.size(); i++){
if(num.get(i) == (N-1)){
return false;
}
else if (num.get(i) == (N+1)){
return false;
}
}
return true ;
}
public static void main(String[] args) {
// Q.1 - Monotonic arrayList
// ArrayList<Integer> num = new ArrayList<>();
// num.add(1);
// num.add(3);
// num.add(2);
// // num.add(4);
// System.out.println( monotonic(num) );
// Q.2 - Lonely numbers
ArrayList<Integer> num = new ArrayList<>() ;
num.add(1);
num.add(3) ;
num.add(5) ;
num.add(3) ;
ArrayList<Integer> list = new ArrayList<>() ;
for(int i=0; i<num.size() ; i++){
if( lonelyNumbers(num, num.get(i)) ) {
}
}
}
}