Rectangle - circuit

Inputs

  • Side a
  • Side b

Outputs

  • Circuit

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
Side a: 2
Side b: 1
Circuit: 6
2.
Side a: 1
Side b: 1
Circuit: 4
3.
Side a: 5
Side b: 5
Circuit: 20

Applicable neurons

  • Plus (x + y)
  • Multiple (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 - circuit: 
 * 
 * @param x1 Side a
 * @param x2 Side b
 * @return {Array}
 */
function neuron16(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

  arr = neuron1(outputs[1], outputs[0]);
  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