Determine the length of an array
Calculate and return the length of an array.
Sample Code:
def calcSize(a):
// Enter your logic here...
Examples:
Input: [1,2,3,4,5]
Output: 5
Explanation: There are 5 elements in the given array.
Input: []
Output: 0
Explanation: Given array is empty.