type-challenges-solutions icon indicating copy to clipboard operation
type-challenges-solutions copied to clipboard

type-challenges-solutions/en/medium-drop-char

Open utterances-bot opened this issue 1 year ago • 1 comments

Drop Char

This project is aimed at helping you better understand how the type system works, writing your own utilities, or just having fun with the challenges.

https://ghaiklor.github.io/type-challenges-solutions/en/medium-drop-char.html

utterances-bot avatar Aug 16 '24 08:08 utterances-bot

Here is my similar solution:

type DropChar<S, C, acc extends string = ''> = S extends ${infer F}${infer R} ? F extends C ? DropChar<R, C, acc> : DropChar<R, C, ${acc}${F}> : acc

JanessaTech avatar Aug 16 '24 08:08 JanessaTech