问题标签 [zkp]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
arrays - 如何在 Circom 中访问具有“未知”索引的数组元素?
我有以下Circom(电路编译器语言)程序:
我想访问任意索引处的数组元素并将其作为信号返回。
我收到以下错误:
如何访问具有“未知”索引的数组元素?
我正在尝试构建的是一个程序,它接收一个字节数组,寻找一个特定的索引,然后获取array[index:]
. 我不知道索引是什么,索引将根据数组的内容在程序内部计算。
我已经在 crypto.stackexchange.com 上问过我之前的 Circom 问题,但在这里得到了指导。