Rectangle - perimeter

Inputs

  • length (l)
  • width (w)

Outputs

  • Perimeter

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
length (l): 2
width (w): 4
Perimeter: 12
2.
length (l): 1
width (w): 10
Perimeter: 22
3.
length (l): 5
width (w): 4
Perimeter: 18

Applicable neurons

  • Plus (x + y)

Algorithm

Test

Code made by AI:
/**
 * 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()];
}

/**
 * Rectangle - perimeter: 
 * 
 * @param x1 length (l)
 * @param x2 width (w)
 * @return {Array}
 */
function neuron549(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

  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:

Create your family tree for free