Rectangle - content

Inputs

  • Side a
  • Side b

Outputs

  • Content of rectangle

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
Side a: 2
Side b: 3
Content of rectangle: 6
2.
Side a: 3
Side b: 5
Content of rectangle: 15

Applicable neurons

  • Plus (x + y)
  • Multiple (x × y)

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

/**
 * Rectangle - content: 
 * 
 * @param x1 Side a
 * @param x2 Side b
 * @return {Array}
 */
function neuron15(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

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

  return[outputs[2]];
}


Code made by AI:

Create your family tree for free