Skip to content

Latest commit

 

History

History
16 lines (10 loc) · 1.91 KB

File metadata and controls

16 lines (10 loc) · 1.91 KB

AnyOf 보통 #array

by null @kynefuk

도전하기    English 简体中文

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.

Python의 any function을 타입 시스템으로 구현하세요

배열을 사용하고 배열의 요소가 참이면 true를 반환합니다. 배열이 비어 있으면 false를 반환합니다

예시:

type Sample1 = AnyOf<[1, "", false, [], {}]> // expected to be true.
type Sample2 = AnyOf<[0, "", false, [], {}]> // expected to be false.

돌아가기 정답 공유하기 정답 보기