79267216

Date: 2024-12-10 06:36:57
Score: 0.5
Natty:
Report link

I found the Galois library to do this:

import galois
GF2 = galois.GF(2)
x = GF2([[0, 0], [1, 1]])
y = GF2([[0, 1], [1, 0]])
x @ y

Gives the correct answer,

GF([[0, 0],
    [1, 1]], order=2)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
Posted by: Gavin Wahl