mirror of
https://github.com/type-challenges/type-challenges.git
synced 2026-01-25 14:47:17 +00:00
Compare Array Length

by alviner @ScriptBloom
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.