From 571d4633d994dfbd104c238841de51edff7f6bf0 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Mon, 13 Jul 2026 15:20:37 -0400 Subject: [PATCH] feat(work): add problem1 function implementation --- work/Blind/deduction.js | 1 + 1 file changed, 1 insertion(+) diff --git a/work/Blind/deduction.js b/work/Blind/deduction.js index 3afea78..9f11ac4 100644 --- a/work/Blind/deduction.js +++ b/work/Blind/deduction.js @@ -17,6 +17,7 @@ // problem1([5]) => [0] // problem1([4, 1, 4, 1]) => [2, 0, 2, 0] function problem1(arr) { + // your code } // ---- problem2 ----