chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,22 +1,24 @@
---
id: 5900f43e1000cf542c50ff4f
title: 问题209循环逻辑
title: 'Problem 209: Circular Logic'
challengeType: 5
videoUrl: ''
forumTopicId: 301850
dashedName: problem-209-circular-logic
---
# --description--
k输入二进制真值表是从k个输入位二进制数字0 \[假]或1 \[真]到1个输出位的映射。例如逻辑AND和XOR函数的2输入二进制真值表是
A k-input binary truth table is a map from k input bits
x y x AND y000010100111x y x XOR y000011101110多个6输入二进制真值表τ满足公式
(binary digits, 0 \[false] or 1 \[true]) to 1 output bit. For example, the 2-input binary truth tables for the logical AND and XOR functions are:
所有6位输入abcτabcdef和τbcdef一个XORb和c= 0 def
x y x AND y000010100111x y x XOR y000011101110How many 6-input binary truth tables, τ, satisfy the formula
τ(a, b, c, d, e, f) AND τ(b, c, d, e, f, a XOR (b AND c)) = 0 for all 6-bit inputs (a, b, c, d, e, f)?
# --hints--
`euler209()`应该返回15964587728784
`euler209()` should return 15964587728784.
```js
assert.strictEqual(euler209(), 15964587728784);