-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPre4.java
35 lines (33 loc) · 879 Bytes
/
Pre4.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
package Array02;
public class Pre4 {
/*
* Given a non-empty array of ints, return a new array containing the elements from the original array that come
* before the first 4 in the original array. The original array will contain at least one 4.
*
* Note that it is valid in java to create an array of length 0.
*
* pre4([1, 2, 4, 1]) → [1, 2]
* pre4([3, 1, 4]) → [3, 1]
* pre4([1, 4, 4]) → [1]
* */
public int[] pre4(int[] nums) {
int count = 0;
int[] output;
boolean fourIsFound = false;
for (int i = 0; i < nums.length; i++) {
if (nums[i] == 4) {
fourIsFound = true;
break;
}
do {
count++;
break;
} while (nums[i]!=4 && !fourIsFound);
}
output = new int[count];
for (int j = 0; j <= count-1; j++) {
output[j]=nums[j];
}
return output;
}
}