Exercise #199: Medium Without
Type Challenges (Utility Types) ยท 03-medium
Goal

Goal: Implement the type version of lodash `.without()`. `Without<T, U>` takes an array `T`, number or array `U` and returns an array without the elements of `U`. Source challenge: https://github.com/type-challenges/type-challenges/tree/main/questions/05117-medium-without Reference explanation: https://github.com/ghaiklor/type-challenges-solutions/blob/main/en/medium-without.md

Run "Check Solution" to validate your code in the browser.