Joining two Lists
Given two lists, return a new list containing all the elements from the given lists.
Sample Code:
def joinLists(list1,list2):
# Enter your logic here...
Examples:
Input: [1,2,3,4],[5,6,7,8]
Output: [1,2,3,4,5,6,7,8]
Explanation: Two lists have been concatenated into one.
Input: [4,6,3],[1,1]
Output: [4,6,3,1,1]
Explanation: Two lists have been concatenated into one.