blah blah blah is here! blah blah » Close

0
votes
3 answers

c# code for Merging two sorted arrays

please help me to write a code in c# for merging two sorted integer arrays.for example Input: A = 5 3 6 9 1 B = 4 7 2 6 0 Output 0 1 2 3 4 5 6 7 9 I need a code witout using inbuilt functions because one interviewer asked to ...

Feedback