(cc)
| 137 | } |
| 138 | |
| 139 | function simplify(cc) { |
| 140 | let str = ''; |
| 141 | for (let i = 0; i < cc.length; i++) { |
| 142 | if (ftPYStr().indexOf(cc.charAt(i)) !== -1) str += charPYStr().charAt(ftPYStr().indexOf(cc.charAt(i))); |
| 143 | else str += cc.charAt(i); |
| 144 | } |
| 145 | return str; |
| 146 | } |
| 147 | |
| 148 | // 主函数 |
| 149 | function operator(proxies) { |