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-length-of-string #294

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

type-challenges-solutions/en/medium-length-of-string #294

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

Comments

@utterances-bot
Copy link

Length of String

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-length-of-string.html

Copy link

Share my version with the idea that:

  1. convert string to tuple first (since we can get length from tuple)
  2. get the length of the tuple
type StringToTuple<S extends string> = S extends `${S[0]}${infer Rest}` ? [S, ...StringToTuple<Rest>] : []
type LengthOfString<S extends string> = StringToTuple<S>['length'];

Something to emphasize is, I use ${S[0]}${infer Rest} instead of ${infer Head}${infer Rest} since I think it would be more definite which does not depend on the ts implementation.

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