You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,8 +7,8 @@
7
7
| Current Status| Stats |
8
8
| :------------: | :----------: |
9
9
| Total Problems | 188 |
10
-
| Current Daily Streak|1|
11
-
| Last updated | 06/20/2019|
10
+
| Current Daily Streak|2|
11
+
| Last updated | 06/21/2019|
12
12
13
13
</center>
14
14
@@ -17,12 +17,12 @@
17
17
### LinkedList Problems
18
18
| Problem | Solution |
19
19
| :------------ | :----------: |
20
-
| Find the nth node of linked list from last. |[nthToLastNode.cpp](linked_list_problems/nthToLastNode.cpp)|
21
-
| Add numbers where each digit of the number is represented by node of a linkedlist. Give output as a linked list. |[add_two_numbers_lists.cpp](linked_list_problems/add_two_numbers_lists.cpp)|
20
+
| Find the nth node of linked list from last. |[nthToLastNode.cpp](linked_list_problems/nthToLastNode.cpp), [nth_to_last_node.py](linked_list_problems/nth_to_last_node.py)|
21
+
| Add numbers where each digit of the number is represented by node of a linkedlist. Give output as a linked list. |[add_two_numbers_lists.cpp](linked_list_problems/add_two_numbers_lists.cpp), [add_two_numbers_list.py](linked_list_problems/add_two_numbers_lists.py)|
22
22
| Swap nodes of a linkedlist without swapping data. |[swapNodesWithoutSwappingData.cpp](linked_list_problems/swapNodesWithoutSwappingData.cpp)|
23
23
| Reverse a linked list, iteratively and recursively |[reverseLinkedListIterAndRecurse.cpp](linked_list_problems/reverseLinkedListIterAndRecurse.cpp)|
24
24
| Given a linked list, reverse alternate nodes and append at the end. |[reverseAlternateNodes.cpp](linked_list_problems/reverseAlternateNodes.cpp)|
25
-
| Only given a node pointer, delete the node from the linked list. |[deleteNode.cpp](linked_list_problems/deleteNode.cpp)|
25
+
| Only given a node pointer, delete the node from the linked list. |[deleteNode.cpp](linked_list_problems/deleteNode.cpp)|
26
26
| Delete the entire linkedlist. |[deleteLinkedlist.cpp](linked_list_problems/deleteLinkedlist.cpp)|
27
27
| Print middle node of linkedlist without iterating twice. |[printMiddleNode.cpp](linked_list_problems/printMiddleNode.cpp)|| Detecting and removing a cycle in linkedlist.|[floyedCycleDetection.cpp](linked_list_problems/floyedCycleDetection.cpp)|
28
28
| Determine if a linked list is a pallindrome. |[listPallindrome.cpp](linked_list_problems/listPallindrome.cpp)|
0 commit comments