This content originally appeared on DEV Community and was authored by Keff
Following on the previous challenge, I thought of doing a similar challenge but for multiplication.
Can you multiply 2 numbers without using the following operators and keywords?
Rules:
- Multiply a and b
- Don't use operators: +-*/
- Don't use keywords: for/while
Pseudocode:
a = 2
b = 32
multiply(a, b) => 64
Test:
multiply(a, b) == a * b
You can use any language you want, additionally you can add a note indicating which language it is, so people not familiar with the language can know!
That's all, have fun!!
My solution:
This content originally appeared on DEV Community and was authored by Keff
Keff | Sciencx (2022-07-11T11:13:14+00:00) [Challenge] Multiply 2 numbers without ‘+-*/’ operators and ‘for’ and ‘while’ keywords. Retrieved from https://www.scien.cx/2022/07/11/challenge-multiply-2-numbers-without-operators-and-for-and-while-keywords/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.