-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHas12.java
37 lines (34 loc) · 861 Bytes
/
Has12.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
package Array02;
public class Has12 {
public boolean has12(int[] nums) {
/*
* Given an array of ints, return true if there is a 1 in the array with a 2 somewhere later in the array.
*
* has12([1, 3, 2]) → true
* has12([3, 1, 2]) → true
* has12([3, 1, 4, 5, 2]) → true
* */
for (int i = 0; i < nums.length - 1; i++) {
if (nums[i] == 1) {
for (int j = i; j <= nums.length-1; j++) {
if (nums[j] == 2) {
return true;
}
}
}
}
return false;
// ** BEHOLD THEE THE MOST SUFFICIENT ALGORITHM: **
//
// boolean hasOne = false;
// for (int i = 0; i < nums.length; i++) {
// if (nums[i] == 1) {
// hasOne = true;
// }
// if (nums[i] == 2 && hasOne == true) {
// return true;
// }
// }
// return false;
}
}