Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
because Counter is subclass of dict..try isinstance(a,b) it will handle inheritance
Hi
Input hashes are in MSB
tx_hashes = ["8347cee4a1cb5ad1bb0d92e86e6612dbf6cfc7649c9964f210d4069b426e720a","a16f3ce4dd5deb92d98ef5cf8afeaf0775ebca408f708b2146c4fb42b41e14be"]
So, you should convert it into LSB and then calculate
hash(tx0_LSB)
andhash(tx1_LSB)
at the first stepNotice, you should convert
hash(tx0_LSB)
into LSB too