Redus Russ

Generation

generate functionMon, 06 Feb 2023

a function that puts the arrays given into another array

def array_join(arr1, arr2): # return arr1 + arr2 return [*arr1, *arr2] array_join([1,2,3], [4,5,6])

Questions about programming?Chat with your personal AI assistant