Best algorithm has been found - locked
| Pattern | Input | Output | ||||
|---|---|---|---|---|---|---|
| 1. |
|
|
||||
| 2. |
|
|
||||
| 3. |
|
|
||||
| 4. |
|
|
||||
| 5. |
|
|
||||
| 6. |
|
|
/**
* Round to an integer: round(x)
*
* @param x1 Value
* @return {Array}
*/
function neuron620(x1)
{
return[Math.round(Number(x1))]
}
/**
* 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];
}
/**
* Is it integer?:
*
* @param x1 Number
* @return {Array}
*/
function neuron914(x1)
{
var outputs = [];
outputs[0] = x1;
arr = neuron620(outputs[0]);
outputs[1] = arr[0];
arr = neuron591(outputs[1], outputs[0]);
outputs[2] = arr[0];
return[outputs[2]];
}