题解 - Medium30301 - IsOddOn this page30301 - IsOddAnswer TestCases如果一个数组是奇数则返回 true 例如:Solutiontype IsOdd<T extends number> = `${T}` extends `${string}${'.' | 'e'}${string}` ? false : `${T}` extends `${string}${1 | 3 | 5 | 7 | 9}` ? true : false