Skip to content

Latest commit

 

History

History
10 lines (6 loc) · 1.32 KB

File metadata and controls

10 lines (6 loc) · 1.32 KB

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