You can download this code by clicking the button below.
This code is now available for download.
Merge two lists of integers into an array
Technology Stack : array
Code Type : Function
Code Difficulty :
def aces(arg1, arg2):
import array
return array.array('i', arg1 + arg2)