From edf057884e3470a0816964918073a3007e8789a4 Mon Sep 17 00:00:00 2001 From: Bijay Limbu Date: Fri, 6 Jun 2025 00:24:42 -0400 Subject: [PATCH] Added solution for mul --- Solutions/bl_solution.js | 85 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 Solutions/bl_solution.js diff --git a/Solutions/bl_solution.js b/Solutions/bl_solution.js new file mode 100644 index 0000000..f28b7f3 --- /dev/null +++ b/Solutions/bl_solution.js @@ -0,0 +1,85 @@ +const mul = (a,b) => { + console.log("Multiplication done.") + return a*b; +} +module.exports = { + identity, + addb, + subb, + mulb, + minb, + maxb, + add, + sub, + mul, + min, + max, + addRecurse, + mulRecurse, + minRecurse, + maxRecurse, + not, + acc, + accPartial, + accRecurse, + fill, + fillRecurse, + set, + identityf, + addf, + liftf, + pure, + curryb, + curry, + inc, + twiceUnary, + doubl, + square, + twice, + reverseb, + reverse, + composeuTwo, + composeu, + composeb, + composeTwo, + compose, + limitb, + limit, + genFrom, + genTo, + genFromTo, + elementGen, + element, + collect, + filter, + filterTail, + concatTwo, + concat, + concatTail, + gensymf, + gensymff, + fibonaccif, + counter, + revocableb, + revocable, + extract, + m, + addmTwo, + addm, + liftmbM, + liftmb, + liftm, + exp, + expn, + addg, + liftg, + arrayg, + continuizeu, + continuize, + vector, + exploitVector, + vectorSafe, + pubsub, + mapRecurse, + filterRecurse, +}; \ No newline at end of file