Skip to content

Commit 72fa484

Browse files
feat(question): add type-challenges#8767 - Permuatation & Combination (type-challenges#8768)
Co-authored-by: Homyee King <[email protected]>
1 parent 1fb6132 commit 72fa484

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Give an array of strings, then do Permutation & Combination.
2+
It's also useful for the prop types like video [controlsList](https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement/controlsList)
3+
4+
```ts
5+
// expected to be `"foo" | "bar" | "baz" | "foo bar baz" | "bar foo" | "baz foo" | "bar baz" | "baz bar"`
6+
type Keys = PermutationCombination<['foo', 'bar', 'baz']>
7+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
difficulty: meduim
2+
title: Permuatation & Combination
3+
tags: array, application, string
4+
author:
5+
github: HomyeeKing
6+
name: Homyee King
7+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
type PermutationCombination<T extends string[]> = any
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { Equal, Expect } from '@type-challenges/utils'
2+
3+
type cases = [
4+
Expect<Equal<PermutationCombination<['foo', 'bar', 'baz']>,
5+
'foo' | 'bar' | 'baz' | 'foo bar baz' | 'bar foo' | 'baz foo' | 'bar baz' | 'baz bar'>>,
6+
]

0 commit comments

Comments
 (0)