This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 249
Reverse a doubly linked list (Python) #283
Labels
Milestone
Comments
@aditya109 Can you please assign this to me? Thanks! |
Hi @nazuk27 ! Please go on ahead and raise a PR for the same, linking this issue. I am assigning this issue to you. Please consider starring the repo, if you have not already to encourage further contributions. |
nazuk27
added a commit
to nazuk27/git-osp-for-beginners
that referenced
this issue
Oct 26, 2020
Signed-off-by: Nazish Khan <[email protected]>
nazuk27
added a commit
to nazuk27/git-osp-for-beginners
that referenced
this issue
Oct 26, 2020
Signed-off-by: Nazish Khan <[email protected]>
nazuk27
added a commit
to nazuk27/git-osp-for-beginners
that referenced
this issue
Oct 26, 2020
Added Reverse a doubly linked list (Python) aditya109#283
@nazuk27 Can you please assign this to me. I'd like to attempt this in Java. |
aditya109
pushed a commit
that referenced
this issue
Oct 28, 2020
* Added Counting occurrence of each word (Python) #276 Signed-off-by: Nazish Khan <[email protected]> * Added Counting occurrence of each word (Python) in proper folder * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <[email protected]> * Delete CountingOccurrenceOfEachWord.py * Delete ReverseDoublyLinkedList.py * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <[email protected]> * Added Modified Kaprekar Numbers (Python) #281 Signed-off-by: Nazish Khan <[email protected]>
aditya109
pushed a commit
that referenced
this issue
Oct 28, 2020
* Added Counting occurrence of each word (Python) #276 Signed-off-by: Nazish Khan <[email protected]> * Added Counting occurrence of each word (Python) in proper folder * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <[email protected]> * Delete CountingOccurrenceOfEachWord.py * Delete ReverseDoublyLinkedList.py * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <[email protected]>
aditya109
pushed a commit
that referenced
this issue
Oct 28, 2020
* Added Counting occurrence of each word (Python) #276 Signed-off-by: Nazish Khan <[email protected]> * Added Counting occurrence of each word (Python) in proper folder * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <[email protected]> * Delete CountingOccurrenceOfEachWord.py * Delete ReverseDoublyLinkedList.py * Added Reverse a doubly linked list (Python) #283 Signed-off-by: Nazish Khan <[email protected]> * Added Modified Kaprekar Numbers (Python) #281 Signed-off-by: Nazish Khan <[email protected]>
I already have implemented this as well @aditya109 & @MalEl-94 in JAVA 😁. |
@aditya109 can you assign this issue to me as well? I want to do this in C++. |
i would like to solve this issue! |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
Given a pointer to the head node of a doubly linked list, reverse the order of the nodes in the list and display the reversed Linked List.
Input Format:
The first line contains an integer 't', the number of test cases.
Each test case is of the following format:
Output Format:
Print the reversed doubly linked list.
Sample Input:
1
4
1
2
3
4
Sample Output:
4 3 2 1
The text was updated successfully, but these errors were encountered: