到目前为止,我有这段代码:
public static void rLTZ(List<Integer> args) {
List<Integer> data = new ArrayList<Integer>(args);
for (int i = 0; i < data.size(); i++){
if (data.get(i) < 0){
data.remove(i);
}
args = data;
}
不确定为什么它不起作用,还有办法以更高的效率解决这个问题吗?