Commit b2c139ec authored by Archie Shahidullah's avatar Archie Shahidullah :expressionless:
Browse files

Update IDeque.java

parent 00ca9f78
1 merge request!1Review Tests for Project 3
Pipeline #36411 failed with stage
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -23,7 +23,7 @@ public interface IDeque<E> extends ICollection<E> {
* @param e Element to add
*/
default public void add(E e){
this.addFront(e);
this.addBack(e);
}
/**
......
Markdown is supported
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