Skip to content

Commit 5b513e6

Browse files
format
1 parent beb01b2 commit 5b513e6

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/com/thealgorithms/datastructures/lists/SelfOrganizingLinkedList.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,4 @@ public int getSize() {
113113
public boolean isEmpty() {
114114
return head == null;
115115
}
116-
}
116+
}

src/test/java/com/thealgorithms/datastructures/lists/SelfOrganizingLinkedListTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ void testMultipleSearchesSequentialMoveToFront() {
8282
list.search(1); // Head becomes 1
8383
assertEquals(1, list.getHeadValue());
8484
}
85-
}
85+
}

0 commit comments

Comments
 (0)