Rules:
1.Normal Sudoku Rules apply.
2.Digits in a cage may not repeat and the number at the top left corner of the killer cage is either the sum or the results of Bitwise OR operator result of the digits in that cage.
Appendix: Bitwise OR (|) operator (Binary System):
Bitwise OR | Rules: 0 + 0 = 0 0 + 1 = 1 + 0 = 1 + 1 = 1.
Example: 5 | 9 =
|| 0 1 0 1
+ 1 0 0 1
------------
= 1 1 0 1 = 13
Solution code: Column 2 and 8
on 4. October 2022, 10:53 by MartinR
Nice idea, once you get the idea of the OR aspect, flows nicely