-
Notifications
You must be signed in to change notification settings - Fork 49
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
Day 22 q3: Sort List #440
Comments
Please assign this question to me :) @kratika-Jangid @karishma-2020 |
please assign this question to me |
Please assign this issue to me :) |
please assign this question to me @bh-g |
Closed
Tech-neophyte
added a commit
to Tech-neophyte/LeetCode_Q
that referenced
this issue
Jan 21, 2024
Karnankita04
added a commit
to Karnankita04/LeetCode_Q
that referenced
this issue
Jan 23, 2024
Karnankita04
added a commit
to Karnankita04/LeetCode_Q
that referenced
this issue
Jan 24, 2024
bh-g
added a commit
that referenced
this issue
Jan 24, 2024
day 22-q3 (py3, cpp) solution added #440
Karnankita04
added a commit
to Karnankita04/LeetCode_Q
that referenced
this issue
Jan 25, 2024
Pls assign this issue to me for an optimal java solution @bh-g |
please assign me this question :) @bh-g |
kratika-Jangid
added a commit
that referenced
this issue
Jan 27, 2024
Solved Day 22 q3: Sort List #440
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Given the head of a linked list, return the list after sorting it in ascending order.
Example 1:
Input: head = [4,2,1,3]
Output: [1,2,3,4]
Example 2:
Input: head = [-1,5,3,4,0]
Output: [-1,0,3,4,5]
Example 3:
Input: head = []
Output: []
The text was updated successfully, but these errors were encountered: