Michael Grigoryan
12/03/2021, 7:18 PMephemient
12/03/2021, 7:30 PMephemient
12/03/2021, 7:32 PM00100
11110
10110
10111
10101
01111
00111
11100
10000
11001
00010
01010
for oxygen, first see that the most common bit in the first column is 1, so remove everything that doesn't have a 1 in the first column:
11110
10110
10111
10101
11100
10000
11001
then the most common bit in the second column is 0, so remove everything that doesn't have a 0 in the second column:
10110
10111
10101
10000
and so on, until there's only 1 remainingMichael Böiers
12/03/2021, 8:36 PMMichael Böiers
12/03/2021, 8:38 PMephemient
12/03/2021, 8:47 PMMichael Böiers
12/03/2021, 10:35 PMtodd.ginsberg
12/03/2021, 10:42 PMIf you only have one number left, stop; this is the rating value for which you are searching.
ephemient
12/03/2021, 10:50 PMephemient
12/03/2021, 10:51 PMMichael Böiers
12/03/2021, 10:55 PMtodd.ginsberg
12/03/2021, 10:55 PMMichael Böiers
12/03/2021, 11:01 PMtodd.ginsberg
12/03/2021, 11:04 PMMichael Grigoryan
12/04/2021, 5:27 AM