mirror of https://github.com/dnomd343/klotski.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
160 B
10 lines
160 B
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
class ShortCode {
|
|
public:
|
|
uint32_t zip_short_code(uint64_t code);
|
|
uint64_t unzip_short_code(uint32_t short_code);
|
|
|
|
};
|
|
|