Skip to content
Snippets Groups Projects
Commit d9014b22 authored by Thomas Lapp's avatar Thomas Lapp
Browse files

correction de bug

parent 625e3783
Branches
No related merge requests found
......@@ -2,7 +2,6 @@ package p4a;
public class MainLinkedListStdRemoveFirstValue {
public static void main(String[] args) {
<<<<<<< HEAD
ArrayListStd<Integer> arrayList = new ArrayListStd<Integer>();
int nbOperation = Integer.parseInt(args[0]);
......@@ -11,16 +10,6 @@ public class MainLinkedListStdRemoveFirstValue {
}
for (int i = 0; i < nbOperation; i++) {
arrayList.suppression(0);
=======
LinkedListStd<Integer> linkedListStd = new LinkedListStd<Integer>();
int nbOperation = Integer.parseInt(args[0]);
for (int i = 0; i < nbOperation; i++) {
linkedListStd.ajout(0, i);
}
for (int i = 0; i < nbOperation; i++) {
linkedListStd.suppression(0);
>>>>>>> af571803536d0b71fa91c1f897612b43608d9bbd
}
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment