hejneho matematika 2 - 15/6

Inputs

  • x

Outputs

  • y

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
x: 1
y: 8
2.
x: 2
y: 10
3.
x: 3
y: 12
4.
x: 4
y: 14
5.
x: 5
y: 16
6.
x: 6
y: 18

Applicable neurons

  • Plus (x + y)
  • Minus (x - y)
  • 1
  • 2
  • 3
  • 4
  • [a, b]
  • character $
  • character ;
  • min (from 2 values)
  • get minutes from time (hh:mm:ss)
  • convert seconds into hours, minutes and seconds

Algorithm

Test

Code made by AI:
/**
 * 3: 
 *
 * @return {Array}
 */
function neuron503()
{
return [3];
}

/**
 * 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()];
}

/**
 * hejneho matematika 2 - 15/6: 
 * 
 * @param x1 x
 * @return {Array}
 */
function neuron924(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

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

  return[outputs[3]];
}


Code made by AI:

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