Skip to content
Snippets Groups Projects
Commit 58a140a9 authored by Ewan Chauvin's avatar Ewan Chauvin
Browse files

Fix du Link dans OurLinkedList

parent ed83eae0
Branches
No related merge requests found
import java.util.Random;
public class OurLinkedList implements Structure {
public class Link<T> {
public class Link {
int value;
Link next;
Link previous;
......
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