Update TP/TP3.md

This commit is contained in:
Luc Dartois 2025-02-12 16:40:13 +01:00
parent 9a33cbb00f
commit d1a67ae9a7

@ -14,7 +14,7 @@ Pour utiliser une LinkedList en tant que file FIFO, vous pouvez utiliser les mé
```
public boolean isEmpty() : Returns true if this collection contains no elements.
Integer remove() : Retrieves and removes the head (first element) of this list.
boolean offer(E e) : Adds the specified element as the tail (last element) of this list.
boolean offer(int i) : Adds the specified element i as the tail (last element) of this list.
```
**Question :**