tsg-ut/mnemo

View on GitHub
stages/sixth-power.js

Summary

Maintainability
B
5 hrs
Test Coverage
module.exports = {
    name: 'sixth-power',
    version: 3,
    parts: {
        wireI: null,
        wireL: null,
        wireT: null,
        'times-2': null,
        'times-3': null,
        'plus-1': null,
        'plus-2': null,
        'minus-1': null,
        'minus-2': null,
        add: null,
        sub: null,
        div: null,
        mul: null,
    },
    inputX: 2,
    outputX: 2,
    input: [
        2,
        3,
        5,
    ],
    output: [
        64,
        729,
        15625,
    ],
    width: 5,
    height: 5,
    clockLimit: 25,
    statement: '✖️ブロックをうまく配置して、6乗を計算してみよう!',
    title: '6乗',
};