tsg-ut/mnemo

View on GitHub
stages/100-again.js

Summary

Maintainability
B
4 hrs
Test Coverage
module.exports = {
    name: '100-again',
    version: 3,
    parts: {
        wireI: null,
        wireL: null,
        wireT: null,
        'times-2': null,
        'const-1': null,
        add: null,
        sub: null,
        mul: null,
    },
    inputX: 2,
    outputX: 2,
    input: [
        -1,
        10,
        1,
    ],
    output: [
        100,
        100,
        100,
    ],
    width: 5,
    height: 5,
    clockLimit: 25,
    statement: '100を作ろう!',
    title: '100再び',
};