questions/00949-medium-anyof/README.md
Implement Python liked any function in the type system. A type takes the Array and returns true if any element of the Array is true. If the Array is empty, return false.
For example:
type Sample1 = AnyOf<[1, "", false, [], {}]> // expected to be true.
type Sample2 = AnyOf<[0, "", false, [], {}]> // expected to be false.
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/949/answer" target="_blank"></a> <a href="https://tsch.js.org/949/solutions" target="_blank"></a> <!--info-footer-end-->