You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are 3669688706217187500 banko cards. Say we have a set of 10000000 banko cards. How many sets of this kind exist? We can use the binomial coefficient to find this number. Then we can just compress the set of cards into an index into a virtual array of sets. However, this is a very large number, and I didn't actually succeed in just calculating it. Also, I don't think a practical implementation is doable.
But this also generalizes into our current perfect-for-one-card compression, as binom(n, 1) = n.
The text was updated successfully, but these errors were encountered:
Looks like this is the formula. For your example, you would need about 4500000 bits, or 548KiB. Our best algorithm (7) currently uses 766KiB to encode 100k sorted boards.
There are 3669688706217187500 banko cards. Say we have a set of 10000000 banko cards. How many sets of this kind exist? We can use the binomial coefficient to find this number. Then we can just compress the set of cards into an index into a virtual array of sets. However, this is a very large number, and I didn't actually succeed in just calculating it. Also, I don't think a practical implementation is doable.
But this also generalizes into our current perfect-for-one-card compression, as binom(n, 1) = n.
The text was updated successfully, but these errors were encountered: