Inputs
-
Do we have workers? (1/0)
-
Do we have the material? (1/0)
Outputs
-
Yes we can. / No we can't. (1/0)
Neuron type
Best algorithm has been found - locked
Patterns
Pattern |
Input |
Output |
1. |
Do we have workers? (1/0): |
0 |
Do we have the material? (1/0): |
0 |
|
Yes we can. / No we can't. (1/0): |
0 |
|
2. |
Do we have workers? (1/0): |
0 |
Do we have the material? (1/0): |
1 |
|
Yes we can. / No we can't. (1/0): |
0 |
|
3. |
Do we have workers? (1/0): |
1 |
Do we have the material? (1/0): |
0 |
|
Yes we can. / No we can't. (1/0): |
0 |
|
4. |
Do we have workers? (1/0): |
1 |
Do we have the material? (1/0): |
1 |
|
Yes we can. / No we can't. (1/0): |
1 |
|
Applicable neurons
-
AND
-
tag title
Algorithm
Test
Code made by AI:
/**
* Multiple (x × y):
*
* @param x1 Number X
* @param x2 Number Y
* @return {Array}
*/
function neuron3(x1, x2)
{
math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '*'+Number(x2)).toString()];
}
/**
* AND:
*
* @param x1 1/0
* @param x2 1/0
* @return {Array}
*/
function neuron569(x1, x2)
{
var outputs = [];
outputs[0] = x1;
outputs[1] = x2;
arr = neuron3(outputs[1], outputs[0]);
outputs[2] = arr[0];
return[outputs[2]];
}
/**
* Can we fix it? (1/0):
*
* @param x1 Do we have workers? (1/0)
* @param x2 Do we have the material? (1/0)
* @return {Array}
*/
function neuron601(x1, x2)
{
var outputs = [];
outputs[0] = x1;
outputs[1] = x2;
arr = neuron569(outputs[0], outputs[1]);
outputs[2] = arr[0];
return[outputs[2]];
}
Code made by AI: