Coding Challenge · INTERMEDIATE
Given a nested array of integers, where each element can be an integer or another nested array, write a function to compute the sum of all integers in the array. The depth of nesting can vary, and arrays can be empty. Your task is to recursively traverse the array and calculate the total sum.