Coding Challenge · INTERMEDIATE
A cloud storage service represents folders as nested arrays, where each folder contains either files (represented by positive integers as their sizes in MB) or other folders (arrays). Given a folder structure, compute the total size of all files contained within, including those in any subfolders. Return the total size…