Secret Function

Published by Mubashir Hassan in

Create a function based on the input and output. Look at the examples, there is a pattern.

Examples

secret(24) ➞ 8

secret(42) ➞ 8

secret(15) ➞ -4

secret(52) ➞ 15

Notes

  • num >= 10 and num <= 52
  • .pow(), * and - can be helpful.
Watch a quick demo on how Edabit works.