Exclude easy #built-in #union

by Zheeeng @zheeeng

Take the Challenge    简体中文 日本語 한국어

Implement the built-in `Exclude` > Exclude from `T` those types that are assignable to `U` For example: ```ts type Result = MyExclude<'a' | 'b' | 'c', 'a'> // 'b' | 'c' ```
Back Share your Solutions Check out Solutions