Compare Array Length medium #recursion #array

by alviner @ScriptBloom

Take the Challenge

Implement `CompareArrayLength` to compare two array length(T & U). If length of T array is greater than U, return 1; If length of U array is greater than T, return -1; If length of T array is equal to U, return 0.
Back Share your Solutions Check out Solutions