mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 14:37:45 +07:00
GitOrigin-RevId: e836468e05db28157713e9edd3c70382f8ecdebc
11 lines
186 B
Java
11 lines
186 B
Java
// "Delete element" "true"
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
|
|
public class Test {
|
|
|
|
public static int[] init(int n) {
|
|
int[] data = new int[n];
|
|
return data;
|
|
}
|
|
} |