x - 1

Inputs

  • x

Outputs

  • x - 1

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
x: 5
x - 1: 4
2.
x: 0
x - 1: -1
3.
x: -8
x - 1: -9

Applicable neurons

  • Minus (x - y)
  • 1
  • Sum of complex numbers
  • character ?
  • delete character at the end of a sentence
  • (x)(y)
  • word largest
  • Cut String At specific character
  • word 11
  • sql A+B

Algorithm

Test

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

/**
 * Minus (x - y): 
 *
 * @param x1 Number X
 * @param x2 Number Y
 * @return {Array}
 */
function neuron2(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '-'+Number(x2)).toString()];
}

/**
 * x - 1: 
 * 
 * @param x1 x
 * @return {Array}
 */
function neuron595(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

  return[outputs[2]];
}


Code made by AI:

Create your family tree for free