constant x.xx

Inputs

  • 1
  • 2
  • 3

Outputs

  • x.xx

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
1: 1
2: 2
3: 3
x.xx: 1.23
2.
1: 9
2: 8
3: 7
x.xx: 9.87
3.
1: a
2: b
3: c
x.xx: a.bc

Applicable neurons

  • Connect - two inputs
  • constant x.x
  • AND
  • name into end tag
  • character d
  • Connect - two words (with space)
  • Get first word
  • x × (-1)
  • a(?=b|c)
  • [x]
  • \\s
  • Convert date (yyyy-mm-dd) to year, month, day
  • hejneho matematika 2 - 15/6

Algorithm

Test

Code made by AI:
/**
 * Connect - two inputs: 
 *
 * @param x1 Variable A
 * @param x2 Variable B
 * @return {Array}
 */
function neuron520(x1, x2)
{
return [x1.toString()+x2.toString()];
}

/**
 * character .: 
 *
 * @return {Array}
 */
function neuron510()
{
return['.'];
}

/**
 * Connect - two inputs: 
 *
 * @param x1 Variable A
 * @param x2 Variable B
 * @return {Array}
 */
function neuron520(x1, x2)
{
return [x1.toString()+x2.toString()];
}

/**
 * constant x.x: Connect two numbers to number with a decimal point
 * 
 * @param x1 Number before the decimal point
 * @param x2 Number after the decimal point
 * @return {Array}
 */
function neuron539(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

  arr = neuron510();
  outputs[2] = arr[0];

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

  arr = neuron520(outputs[3], outputs[1]);
  outputs[4] = arr[0];

  return[outputs[4]];
}


/**
 * constant x.xx: 
 * 
 * @param x1 1
 * @param x2 2
 * @param x3 3
 * @return {Array}
 */
function neuron711(x1, x2, x3)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;
  outputs[2] = x3;

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

  arr = neuron539(outputs[0], outputs[3]);
  outputs[4] = arr[0];

  return[outputs[4]];
}


Code made by AI:

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