From 20e1f7f805ddc08c5a7800e415f666e313fe6524 Mon Sep 17 00:00:00 2001 From: Vsevolod Rychkov Date: Tue, 9 Sep 2025 11:26:42 +0500 Subject: [PATCH] Resolves #320 by changing Files section --- projects/generics/hidash/04-pickmany/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/generics/hidash/04-pickmany/README.md b/projects/generics/hidash/04-pickmany/README.md index 4ce09956..5afda9f1 100644 --- a/projects/generics/hidash/04-pickmany/README.md +++ b/projects/generics/hidash/04-pickmany/README.md @@ -19,6 +19,6 @@ Example: `pickMany({ a: 1, b: 2, c: 3 }, ['a', 'c'])` -> `[1, 3]` ## Files -- `index.ts`: Write your `pick` function here -- `index.test.ts`: Tests verifying `pick` +- `index.ts`: Write your `pickMany` function here +- `index.test.ts`: Tests verifying `pickMany` - `solution.ts`: Solution code