Skip to content

Commit 70746b4

Browse files
committed
Rohit :)
1 parent b1bf892 commit 70746b4

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

test/com/deepak/data/structures/Queue/ArrayBasedQueueTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Data-Structures-In-Java
33
* ArrayBasedQueueTest.java
44
*/
5+
// Queue uses FIFO(First In First Out) principle.
56
package com.deepak.data.structures.Queue;
67

78
import org.junit.Assert;

test/com/deepak/data/structures/Stack/ArrayBasedStackTest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
* Data-Structures-In-Java
33
* ArrayBasedStackTest.java
44
*/
5+
//Stack uses LIFO(Last In First Out) principle.
56
package com.deepak.data.structures.Stack;
67

78
import org.junit.Assert;

0 commit comments

Comments
 (0)