From 960dcdc47f4a2d1a5a67bfc3d41322f6148a81bf Mon Sep 17 00:00:00 2001 From: tac-tac-go <11955262+tac-tac-go@users.noreply.github.com> Date: Tue, 22 Apr 2025 13:34:02 +0900 Subject: [PATCH] Create README.ja.md (#36334) --- questions/03062-medium-shift/README.ja.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 questions/03062-medium-shift/README.ja.md diff --git a/questions/03062-medium-shift/README.ja.md b/questions/03062-medium-shift/README.ja.md new file mode 100644 index 00000000..6ebe5b76 --- /dev/null +++ b/questions/03062-medium-shift/README.ja.md @@ -0,0 +1,11 @@ +
+ + `Array.shift` の型バージョンを実装する + +例えば: + +```typescript +type Result = Shift<[3, 2, 1]>; // [2, 1] +``` + +by jiangshan @jiangshanmeta