You can download this code by clicking the button below.
This code is now available for download.
Create an array containing two integers and return it.
Technology Stack : array
Code Type : Function
Code Difficulty : Intermediate
def aaaa(a, b):
import array
result = array.array('i', [a, b])
return result