Best algorithm has been found - locked
Pattern | Input | Output | ||||
---|---|---|---|---|---|---|
1. |
|
|
||||
2. |
|
|
||||
3. |
|
|
/** * 1: * * @return {Array} */ function neuron501() { return [1]; } /** * Plus (x + y): The addition of two whole numbers is the total amount of those quantities combined. * * @param x1 first number * @param x2 second number * @return {Array} */ function neuron1(x1, x2) { math.config({number: 'BigNumber', precision: 64}); return [math.eval(Number(x1) + '+'+Number(x2)).toString()]; } /** * x + 1: * * @param x1 x * @return {Array} */ function neuron596(x1) { var outputs = []; outputs[0] = x1; arr = neuron501(); outputs[1] = arr[0]; arr = neuron1(outputs[1], outputs[0]); outputs[2] = arr[0]; return[outputs[2]]; }