Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

type-challenges-solutions/en/medium-nomiwase #308

Open
utterances-bot opened this issue Nov 24, 2022 · 1 comment
Open

type-challenges-solutions/en/medium-nomiwase #308

utterances-bot opened this issue Nov 24, 2022 · 1 comment

Comments

@utterances-bot
Copy link

AllCombinations

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-nomiwase.html

Copy link

Here is my solution without String2Union, welcome disscussion and improvement :)

issue with explanation

code snippet:

type Head<T extends string> = T extends `${infer First}${any}` ? First : never
type AllCombinations<S extends string, C extends string = ''> = 
  S extends '' ? '' :
  C extends ''
    ? AllCombinations<S, Head<S>>
    : S extends `${infer Left}${C}${infer Right}`
      ? AllCombinations<`${Left}${Right}`>
        | `${C}${AllCombinations<`${Left}${Right}`>}`
        | AllCombinations<S, Head<Right>>
      : never

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants