diff --git a/README.ko.md b/README.ko.md
index 2d10ed8a0..9c9d3b64a 100644
--- a/README.ko.md
+++ b/README.ko.md
@@ -30,7 +30,7 @@
> 배지를 클릭해서 챌린지의 자세한 내용을 확인해보세요.
-
By Plain Text
워밍업 (1)
쉬움 (13)
보통 (88)
어려움 (46)
매우 어려움 (14)
+
By Plain Text
워밍업 (1)
쉬움 (13)
보통 (88)
어려움 (46)
매우 어려움 (14)
> ✨ [Upcoming challenges](https://github.com/type-challenges/type-challenges/issues?q=is%3Aissue+is%3Aopen+label%3Anew-challenge)
diff --git a/questions/00529-medium-absolute/README.ja.md b/questions/00529-medium-absolute/README.ja.md
index 8713ce43e..8c90012b2 100644
--- a/questions/00529-medium-absolute/README.ja.md
+++ b/questions/00529-medium-absolute/README.ja.md
@@ -1,4 +1,4 @@
-
+by Andrey Krasovsky @bre30kra69cs
srting, number または bigint を受け取り、正の数を出力する `Absolute` 型を実装します。 diff --git a/questions/00529-medium-absolute/README.ko.md b/questions/00529-medium-absolute/README.ko.md index f16f91e25..77084213d 100644 --- a/questions/00529-medium-absolute/README.ko.md +++ b/questions/00529-medium-absolute/README.ko.md @@ -1,4 +1,4 @@ -by Andrey Krasovsky @bre30kra69cs
+by Andrey Krasovsky @bre30kra69cs
number, string, 혹은 bigint을 받는 `Absolute` 타입을 만드세요. 출력은 양수 문자열이어야 합니다. @@ -10,4 +10,4 @@ type Test = -100 type Result = Absoluteby Andrey Krasovsky @bre30kra69cs
+by Andrey Krasovsky @bre30kra69cs
diff --git a/questions/00531-medium-string-to-union/README.ja.md b/questions/00531-medium-string-to-union/README.ja.md index ad3b7c4f8..bfde8e687 100644 --- a/questions/00531-medium-string-to-union/README.ja.md +++ b/questions/00531-medium-string-to-union/README.ja.md @@ -1,4 +1,4 @@ -by Andrey Krasovsky @bre30kra69cs
+by Andrey Krasovsky @bre30kra69cs
受け取った文字列を Union 型に変換する型を実装します。 diff --git a/questions/00531-medium-string-to-union/README.ko.md b/questions/00531-medium-string-to-union/README.ko.md index d480f5a9f..416315428 100644 --- a/questions/00531-medium-string-to-union/README.ko.md +++ b/questions/00531-medium-string-to-union/README.ko.md @@ -1,4 +1,4 @@ -by Andrey Krasovsky @bre30kra69cs
+by Andrey Krasovsky @bre30kra69cs
문자열 인수를 입력받는 String to Union 유형을 구현하세요. 출력은 입력 문자열의 Union type이어야 합니다. @@ -10,4 +10,4 @@ type Test = "123" type Result = StringToUnionby Andrey Krasovsky @bre30kra69cs
+by Andrey Krasovsky @bre30kra69cs
实现一个将接收到的String参数转换为一个字母Union的类型。 diff --git a/questions/00599-medium-merge/README.ja.md b/questions/00599-medium-merge/README.ja.md index 355cb9154..d5ed61586 100644 --- a/questions/00599-medium-merge/README.ja.md +++ b/questions/00599-medium-merge/README.ja.md @@ -1,4 +1,4 @@ -by Andrey Krasovsky @bre30kra69cs
+by ZYSzys @ZYSzys
2 つの型をマージして新しい型を作ります。2 つ目に指定した型のキーは 1 つ目の型のキーを上書きします。 diff --git a/questions/00599-medium-merge/README.ko.md b/questions/00599-medium-merge/README.ko.md index 6f61a5638..f51acb7f2 100644 --- a/questions/00599-medium-merge/README.ko.md +++ b/questions/00599-medium-merge/README.ko.md @@ -1,4 +1,4 @@ -by ZYSzys @ZYSzys
+by ZYSzys @ZYSzys
두개의 타입을 새로운 타입으로 병합하세요. 두번째 타입의 Key가 첫번째 타입을 덮어씁니다(재정의합니다) @@ -18,4 +18,4 @@ type coo = { type Result = Mergeby ZYSzys @ZYSzys
+by ZYSzys @ZYSzys
将两个类型合并成一个类型,第二个类型的键会覆盖第一个类型的键。 diff --git a/questions/00612-medium-kebabcase/README.ja.md b/questions/00612-medium-kebabcase/README.ja.md index 6707fcba9..d013e9ddf 100644 --- a/questions/00612-medium-kebabcase/README.ja.md +++ b/questions/00612-medium-kebabcase/README.ja.md @@ -1,4 +1,4 @@ -by ZYSzys @ZYSzys
+by Johnson Chu @johnsoncodehk
キャメルケースもしくはパスカルケースの文字列を、ケバブケースに置換する方を実装します。 diff --git a/questions/00612-medium-kebabcase/README.ko.md b/questions/00612-medium-kebabcase/README.ko.md index fc10dd4cd..03b56a861 100644 --- a/questions/00612-medium-kebabcase/README.ko.md +++ b/questions/00612-medium-kebabcase/README.ko.md @@ -1,4 +1,4 @@ -by Johnson Chu @johnsoncodehk
+by Johnson Chu @johnsoncodehk
`camelCase`나 `PascalCase`를 `kebab-case` 문자열로 수정하세요. @@ -14,4 +14,4 @@ type DoNothing = KebabCase<"do-nothing"> const doNothing: DoNothing = "do-nothing" ``` -by Johnson Chu @johnsoncodehk
+by Johnson Chu @johnsoncodehk
Replace the `camelCase` or `PascalCase` string with `kebab-case`. diff --git a/questions/00645-medium-diff/README.ko.md b/questions/00645-medium-diff/README.ko.md index bcd5ad5b2..be24200fc 100644 --- a/questions/00645-medium-diff/README.ko.md +++ b/questions/00645-medium-diff/README.ko.md @@ -1,5 +1,5 @@ -by Johnson Chu @johnsoncodehk
+by ZYSzys @ZYSzys
`O` & `O1`의 차이점인 `객체`를 가져옵니다 -by ZYSzys @ZYSzys
+by ZYSzys @ZYSzys
Get an `Object` that is the difference between `O` & `O1` diff --git a/questions/00645-medium-diff/README.zh-CN.md b/questions/00645-medium-diff/README.zh-CN.md index 28a50e7a4..05bb31bcf 100644 --- a/questions/00645-medium-diff/README.zh-CN.md +++ b/questions/00645-medium-diff/README.zh-CN.md @@ -1,4 +1,4 @@ -by ZYSzys @ZYSzys
+by ZYSzys @ZYSzys
获取两个接口类型中的差值属性。 diff --git a/questions/00949-medium-anyof/README.ko.md b/questions/00949-medium-anyof/README.ko.md index 82726c9eb..16d4573d3 100644 --- a/questions/00949-medium-anyof/README.ko.md +++ b/questions/00949-medium-anyof/README.ko.md @@ -1,4 +1,4 @@ -by ZYSzys @ZYSzys
+by null @kynefuk
Implement Python liked `any` function in the type system. A type takes the Array and returns `true` if any element of the Array is true. If the Array is empty, return `false`. @@ -13,4 +13,4 @@ type Sample1 = AnyOf<[1, "", false, [], {}]> // expected to be true. type Sample2 = AnyOf<[0, "", false, [], {}]> // expected to be false. ``` -by null @kynefuk
+by null @kynefuk
在类型系统中实现类似于 Python 中 `any` 函数。类型接收一个数组,如果数组中任一个元素为真,则返回 `true`,否则返回 `false`。如果数组为空,返回 `false`。 diff --git a/questions/01042-medium-isnever/README.ko.md b/questions/01042-medium-isnever/README.ko.md index e4401960d..a3d4918c4 100644 --- a/questions/01042-medium-isnever/README.ko.md +++ b/questions/01042-medium-isnever/README.ko.md @@ -1,4 +1,4 @@ -by null @kynefuk
+by hiroya iizuka @hiroyaiizuka
input type으로 `T`를 받는 IsNever type을 구현하세요. 만약 `T`의 유형이 `never`으로 확인되면 `true`를 반환하고 아니면 `false`를 반환합니다 @@ -12,4 +12,4 @@ type D = IsNever<[]> // expected to be false type E = IsNeverby hiroya iizuka @hiroyaiizuka
+by hiroya iizuka @hiroyaiizuka
Implement a type IsNever, which takes input type `T`. If the type of resolves to `never`, return `true`, otherwise `false`. diff --git a/questions/01097-medium-isunion/README.ko.md b/questions/01097-medium-isunion/README.ko.md index f93cb00e3..0f4d27bfe 100644 --- a/questions/01097-medium-isunion/README.ko.md +++ b/questions/01097-medium-isunion/README.ko.md @@ -1,4 +1,4 @@ -by hiroya iizuka @hiroyaiizuka
+by null @bencor
`T`를 입력으로 받고, `T`가 `Union` 유형으로 확인되는지 여부를 반환하는 `IsUnion`을 구현하세요 @@ -10,4 +10,4 @@ type case2 = IsUnionby null @bencor
+by null @bencor
Implement a type `IsUnion`, which takes an input type `T` and returns whether `T` resolves to a union type. diff --git a/questions/01130-medium-replacekeys/README.ko.md b/questions/01130-medium-replacekeys/README.ko.md index c95abf779..f81827cbe 100644 --- a/questions/01130-medium-replacekeys/README.ko.md +++ b/questions/01130-medium-replacekeys/README.ko.md @@ -1,4 +1,4 @@ -by null @bencor
+by 贱贱 @lullabyjune
Union type의 key를 대체하는 ReplaceKeys를 구현하세요. 만약 일부 유형에 해당 key가 존재하지 않는다면 대체하지 않습니다. 타입은 세 개의 인자를 받습니다. @@ -35,4 +35,4 @@ type ReplacedNodes = ReplaceKeys< type ReplacedNotExistKeys = ReplaceKeysby 贱贱 @lullabyjune
+by 贱贱 @lullabyjune
Implement a type ReplaceKeys, that replace keys in union types, if some type has not this key, just skip replacing, A type takes three arguments. diff --git a/questions/01367-medium-remove-index-signature/README.ko.md b/questions/01367-medium-remove-index-signature/README.ko.md index a1a726ee2..5786e916a 100644 --- a/questions/01367-medium-remove-index-signature/README.ko.md +++ b/questions/01367-medium-remove-index-signature/README.ko.md @@ -1,4 +1,4 @@ -by 贱贱 @lullabyjune
+by hiroya iizuka @hiroyaiizuka
객체 유형에서 인덱스 시그니처를 제외하는 `RemoveIndexSignatureby hiroya iizuka @hiroyaiizuka
+by hiroya iizuka @hiroyaiizuka
Implement `RemoveIndexSignatureby hiroya iizuka @hiroyaiizuka
+by SSShuai1999 @SSShuai1999
PercentageParser을 구현하세요. `/^(\+|\-)?(\d*)?(\%)?$/` 정규식에 따라 T를 일치시키고 3개의 일치 요소를 얻습니다 구조는 [`더하기 혹은 빼기`, `숫자`,`단위`]와 같아야 합니다. @@ -20,4 +20,4 @@ type R4 = PercentageParserby SSShuai1999 @SSShuai1999
+by SSShuai1999 @SSShuai1999
实现类型 PercentageParserby SSShuai1999 @SSShuai1999