Write a recursive function that takes a list of numbers and returns a list of the negative numbers in the list using python3.
Write a singly linked list that has no tail pointer, and write a function that returns the tail of the linked list.
`Hey,
Note: Brother in case of any queries, just comment in box I would be very happy to assist all your queries
Note: Brother sometimes while uploading on HomeworkLib the indentations change. So, I request you to verify once with screenshot.
def negativeList(L,R,n):
if(n<0):
return R;
elif(L[n]<0):
R.append(L[n]);
return negativeList(L,R,n-1);
R=negativeList([1,2,-5,9,-3,3],[],4);
print(R);

Note: Brother according to HomeworkLib's policy we are only allowed to answer first part if there are many. So, I request you to post other part as separate posts.
Kindly revert for any queries
Thanks.
Write a recursive function that takes a list of numbers and returns a list of the...