Is it odd?

Inputs

  • Number

Outputs

  • Is odd? (1/0)

Neuron type

Best algorithm has been found - locked

Patterns

Pattern Input Output
1.
Number: 3
Is odd? (1/0): 1
2.
Number: 6
Is odd? (1/0): 0
3.
Number: 2.8
Is odd? (1/0): 0

Applicable neurons

  • Division (x ÷ y)
  • 0
  • 2
  • a = b
  • a is not b
  • IF a=b THEN c ELSE d
  • Decimal part of a number
  • IF (1) THEN a ELSE b
  • Get after substring
  • name into start tag
  • tag div
  • Get first word
  • [a, b]
  • √¯(a² + b² + c²)
  • center bottom
  • First child X position
  • Time to deadline

Algorithm

Test

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

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

/**
 * a = b: IF a=b THEN 1 ELSE 0;
 *
 * @param x1 a
 * @param x2 b
 * @return {Array}
 */
function neuron591(x1, x2)
{
return [(x1 == x2) ? 1 : 0];
}

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

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

/**
 * Connect - three inputs: Connect stringA + stringB + stringC
 * 
 * @param x1 string A
 * @param x2 string B
 * @param x3 string C
 * @return {Array}
 */
function neuron564(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 = neuron520(outputs[0], outputs[3]);
  outputs[4] = arr[0];

  return[outputs[4]];
}


/**
 * Length of string: 
 *
 * @param x1 String
 * @return {Array}
 */
function neuron528(x1)
{
return[x1.toString().length];
}

/**
 * Length of string: 
 *
 * @param x1 String
 * @return {Array}
 */
function neuron528(x1)
{
return[x1.toString().length];
}

/**
 * Substring (startPosition, endPosition): Get substring from string - from position - to pos
 *
 * @param x1 MyString
 * @param x2 start position
 * @param x3 end position
 * @return {Array}
 */
function neuron525(x1, x2, x3)
{
return[x1.toString().substring(x2, x3)];
}

/**
 * Substring (from position to end): 
 * 
 * @param x1 MyString
 * @param x2 start position
 * @return {Array}
 */
function neuron529(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

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

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

  return[outputs[3]];
}


/**
 * Position: Search position substring of string
 *
 * @param x1 MyString
 * @param x2 FindMe
 * @return {Array}
 */
function neuron523(x1, x2)
{
return [x1.toString().indexOf(x2.toString())];
}

/**
 * Get after substring: 
 * 
 * @param x1 MyString
 * @param x2 Substring
 * @return {Array}
 */
function neuron531(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

  arr = neuron528(outputs[1]);
  outputs[2] = arr[0];

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

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

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

  return[outputs[5]];
}


/**
 * Position: Search position substring of string
 *
 * @param x1 MyString
 * @param x2 FindMe
 * @return {Array}
 */
function neuron523(x1, x2)
{
return [x1.toString().indexOf(x2.toString())];
}

/**
 * 0: 
 *
 * @return {Array}
 */
function neuron500()
{
return [0];
}

/**
 * Substring (startPosition, endPosition): Get substring from string - from position - to pos
 *
 * @param x1 MyString
 * @param x2 start position
 * @param x3 end position
 * @return {Array}
 */
function neuron525(x1, x2, x3)
{
return[x1.toString().substring(x2, x3)];
}

/**
 * Get before substring: 
 * 
 * @param x1 MyString
 * @param x2 Substring
 * @return {Array}
 */
function neuron532(x1, x2)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;

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

  arr = neuron500();
  outputs[3] = arr[0];

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

  return[outputs[4]];
}


/**
 * 0: 
 *
 * @return {Array}
 */
function neuron500()
{
return [0];
}

/**
 * a = b: IF a=b THEN 1 ELSE 0;
 *
 * @param x1 a
 * @param x2 b
 * @return {Array}
 */
function neuron591(x1, x2)
{
return [(x1 == x2) ? 1 : 0];
}

/**
 * IF: IF a THEN b ELSE c;
 *
 * @param x1 condition (1/0)
 * @param x2 variable for 1
 * @param x3 variable for 0
 * @return {Array}
 */
function neuron579(x1, x2, x3)
{
return [(x1) ? x2 : x3];
}

/**
 * IF a=b THEN c ELSE d: 
 * 
 * @param x1 a
 * @param x2 b
 * @param x3 c
 * @param x4 d
 * @return {Array}
 */
function neuron724(x1, x2, x3, x4)
{
  var outputs = [];
  outputs[0] = x1;
  outputs[1] = x2;
  outputs[2] = x3;
  outputs[3] = x4;

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

  arr = neuron579(outputs[4], outputs[2], outputs[3]);
  outputs[5] = arr[0];

  return[outputs[5]];
}


/**
 * empty string change into zero: 
 * 
 * @param x1 any string
 * @return {Array}
 */
function neuron743(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

  return[outputs[2]];
}


/**
 * after decimal point: 
 * 
 * @param x1 number with decimal point
 * @return {Array}
 */
function neuron741(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

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

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

  arr = neuron532(outputs[3], outputs[1]);
  outputs[5] = arr[0];

  arr = neuron743(outputs[5]);
  outputs[6] = arr[0];

  return[outputs[6]];
}


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

/**
 * decimal part of a number: 
 * 
 * @param x1 number with decimal point
 * @return {Array}
 */
function neuron748(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

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

  return[outputs[3]];
}


/**
 * Decimal part of a number: 
 * 
 * @param x1 number with decimal point
 * @return {Array}
 */
function neuron750(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

  return[outputs[1]];
}


/**
 * Is it odd?: 
 * 
 * @param x1 Number
 * @return {Array}
 */
function neuron850(x1)
{
  var outputs = [];
  outputs[0] = x1;

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

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

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

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

  arr = neuron750(outputs[2]);
  outputs[5] = arr[0];

  arr = neuron17(outputs[2], outputs[5]);
  outputs[6] = arr[0];

  arr = neuron591(outputs[0], outputs[6]);
  outputs[7] = arr[0];

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

  return[outputs[7]];
}


Code made by AI:

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