1.2 KiB
		
	
	
	
	
	
	
	
			
		
		
	
	
			1.2 KiB
		
	
	
	
	
	
	
	
id, challengeType, title, videoUrl, localeTitle
| id | challengeType | title | videoUrl | localeTitle | 
|---|---|---|---|---|
| 5900f43e1000cf542c50ff4f | 5 | Problem 209: Circular Logic | Problema 209: Lógica Circular | 
Description
x y x AND y000010100111x y x XOR y000011101110Cuántas tablas de verdad binarias de 6 entradas, τ, satisfacen la fórmula
τ (a, b, c, d, e, f) AND τ (b, c, d, e, f, a XOR (b AND c)) = 0 para todas las entradas de 6 bits (a, b, c, d, e, f)?
Instructions
Tests
tests:
  - text: <code>euler209()</code> debe devolver 15964587728784.
    testString: 'assert.strictEqual(euler209(), 15964587728784, "<code>euler209()</code> should return 15964587728784.");'
Challenge Seed
function euler209() {
  // Good luck!
  return true;
}
euler209();
Solution
// solution required