Merging Integer Lists into an Array

  • Share this:

Code introduction


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)                
              
Tags: