mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
9 lines
189 B
Java
9 lines
189 B
Java
|
public class MonkeyCounter {
|
||
|
public static int[] monkeyCount(final int n) {
|
||
|
int[] result = new int[n];
|
||
|
for (int i = 0; i < n; i++)
|
||
|
result[i] = i+1;
|
||
|
return result;
|
||
|
}
|
||
|
}
|