Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reverse a sublist of a linked list #38

Open
Chaitralikore opened this issue Oct 24, 2023 · 5 comments
Open

Reverse a sublist of a linked list #38

Chaitralikore opened this issue Oct 24, 2023 · 5 comments

Comments

@Chaitralikore
Copy link

Given a linked list and positions m and n. Reverse the linked list from position m to n.

Example 1:

Input:
N = 6
Linked List = 1->2->3->4->5->6->NULL
m = 2, n = 4
Output: 1 4 3 2 5 6
Explanation:
Nodes from position 2 to 4
are reversed resulting in
1 4 3 2 5 6.

@vivekgogi
Copy link

I'd like to work on issue #38 in this repository. Could you please assign it to me?

@janhavibagret
Copy link
Contributor

Please Assign me this issue
Janhavi Bagret(UEC2022109)
SY ENTC

@Chaitralikore
Copy link
Author

Hi! @janhavibagret first you need to fill up the hacktoberfest registration form.

@Payalchandak5
Copy link
Contributor

Please assign me with this issue
Payal Chandak
UEC2022118
SY ENTC

@Chaitralikore
Copy link
Author

@janhavibagret yes you can work on this issue.
Happy coding:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants