mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
GitOrigin-RevId: c3f441b42d164438b1035112083a8114735a0a05
10 lines
200 B
Plaintext
10 lines
200 B
Plaintext
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
class X {
|
|
public static List<Integer> prepare(ArrayList<Integer> list) {
|
|
Integer last = list.get(list.size() - 1);
|
|
return list;
|
|
}
|
|
|
|
} |