Skip to content

Commit d418f24

Browse files
committed
feat(leetcode): add No.3467
1 parent 5db5e23 commit d418f24

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

3467.Transform-Array-by-Parity.java

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// https://leetcode.com/problems/transform-array-by-parity/description/
2+
// algorithms
3+
// Easy (88.4%)
4+
// Total Accepted: 32.3K
5+
// Total Submissions: 36.6K
6+
7+
8+
class Solution {
9+
10+
public int[] transformArray(int[] nums) {
11+
int len = nums.length;
12+
int evenNum = 0;
13+
14+
for (int n : nums) {
15+
if ((n & 1) == 0) {
16+
evenNum += 1;
17+
}
18+
}
19+
20+
int[] res = new int[len];
21+
for (int i = evenNum; i < len; i++) {
22+
res[i] = 1;
23+
}
24+
25+
return res;
26+
}
27+
28+
}

0 commit comments

Comments
 (0)