Bit a bit OR (o | ) de un rango
Dados dos enteros L y R. Determine el OR bit a bit de todos los enteros en el rango [L, R] (ambos inclusive). Ejemplos : Input: L = 3, R = 8 Output: 15 3 | 4 | 5 | 6 | 7 | 8 = 15 Input: L = 12, R = 18 Output: … Continue reading «Bit a bit OR (o | ) de un rango»