logical riddle 9

Description

http://www.our-ai.com/img/riddle9.jpg

Inputs

  • q

Outputs

  • a

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
q: 2
a: 6
2.
q: 3
a: 12
3.
q: 4
a: 20
4.
q: 5
a: 30
5.
q: 6
a: 42

Applicable neurons

  • Plus (x + y)
  • Minus (x - y)
  • Multiple (x × y)
  • x to the 2 (x²)
  • delete a period at the end of a sentence
  • 60
  • logical riddle 7+3
  • convert seconds into hours, minutes and seconds

Algorithm

Test

Code made by AI:
/**
 * Multiple (x × y): 
 *
 * @param x1 Number X
 * @param x2 Number Y
 * @return {Array}
 */
function neuron3(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '*'+Number(x2)).toString()];
}

/**
 * x to the 2 (x²): x squared
 * 
 * @param x1 Number X
 * @return {Array}
 */
function neuron7(x1)
{
  var outputs = [];
  outputs[0] = x1;

  arr = neuron3(outputs[0], outputs[0]);
  outputs[1] = arr[0];

  return[outputs[1]];
}


/**
 * Plus (x + y): The addition of two whole numbers is the total amount of those quantities combined.
 *
 * @param x1 first number
 * @param x2 second number
 * @return {Array}
 */
function neuron1(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '+'+Number(x2)).toString()];
}

/**
 * logical riddle 9: http://www.our-ai.com/img/riddle9.jpg
 * 
 * @param x1 q
 * @return {Array}
 */
function neuron744(x1)
{
  var outputs = [];
  outputs[0] = x1;

  arr = neuron7(outputs[0]);
  outputs[1] = arr[0];

  arr = neuron1(outputs[1], outputs[0]);
  outputs[2] = arr[0];

  return[outputs[2]];
}


Code made by AI:

Rodokmen - poznejte své předky | TOPlist U.I., Umělá inteligence