Open anu-shka-k opened 1 year ago
Kindly assign this issue to me Akanksha Kale UEC2021139 Cummins IT
Hi @akanksha1131 , this repository does not allow more than 2 PRs per person and i see that you've been assigned two issues already so i won't be able assign this one to you. Thank you for participating!
No problem, thank you for letting me know!
On Tue, 17 Oct 2023, 20:06 Anushka Kulkarni, @.***> wrote:
Hi @akanksha1131 https://github.com/akanksha1131 , this repository does not allow more than 2 PRs per person and i see that you've been assigned two issues already so i won't be able assign this one to you. Thank you for participating!
— Reply to this email directly, view it on GitHub https://github.com/Mozilla-Campus-Club-Cummins/HacktoberFest23_MozillaCCEW/issues/60#issuecomment-1766550871, or unsubscribe https://github.com/notifications/unsubscribe-auth/A3R6DD3SDMON3V7STB2ERI3X72JVHAVCNFSM6AAAAAA52LJDM2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTONRWGU2TAOBXGE . You are receiving this because you were mentioned.Message ID: <Mozilla-Campus-Club-Cummins/HacktoberFest23_MozillaCCEW/issues/60/1766550871 @github.com>
HEY, I would like to work on this issue! Can you please assign me the same? MANSI DHOTE UEC2022246 SY E&TC
Hi @mansidhote, this repository has been moved. Please comment under this issue to be assigned.
Given K sorted linked lists of size N each, the task is to merge them all maintaining their sorted order.
Input: K = 3, N = 4 list1 = 1->3->5->7->NULL list2 = 2->4->6->8->NULL list3 = 0->9->10->11->NULL Output: 0->1->2->3->4->5->6->7->8->9->10->11
Input: K = 3, N = 3 list1 = 1->3->7->NULL list2 = 2->4->8->NULL list3 = 9->10->11->NULL Output: 1->2->3->4->7->8->9->10->11