mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
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;
|
|
}
|
|
|
|
} |