feat(work): add blind deduction set comments and problem1 function stub

This commit is contained in:
Prad Nukala
2026-07-13 15:08:16 -04:00
parent 04a9e82fc3
commit 2b6e93af0d
+1 -1
View File
@@ -1,3 +1,4 @@
// ============================================================
// BLIND DEDUCTION SET — Monday evening, ONE round, then stop.
// The 6 core interview problems, disguised exactly as they'd
@@ -16,7 +17,6 @@
// problem1([5]) => [0]
// problem1([4, 1, 4, 1]) => [2, 0, 2, 0]
function problem1(arr) {
// your code
}
// ---- problem2 ----