fix: numbering in linked-list index (#92)

pull/96/head
Arsenic 2021-03-02 05:34:36 +05:30 committed by GitHub
parent 1018546897
commit 7d9f810c06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 8 deletions

View File

@ -4,17 +4,10 @@
1. [Singly Linked List](c-or-cpp/singly.cpp)
2. [Reversing Linked List](c-or-cpp/reverse.cpp)
2. [Doubly Linked List](c-or-cpp/doubly.cpp)
3. [Circular Linked List](c-or-cpp/circular.cpp)
2. [Doubly Linked List](c-or-cpp/doubly.cpp)
3. [Circular Linked List](c-or-cpp/circular.cpp)
4. [Insertion Linked List](c-or-cpp/all-possible-insertion.cpp)
4. [Josephus Problem Using Circular Linked List](c-or-cpp/josephus-problem.c)
5. [Josephus Problem Using Circular Linked List](c-or-cpp/josephus-problem.c)
### Java