This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
from copy import copy | |
from typing import List | |
class Nine: | |
EMPTY_GRID = 0 | |
_DISTANCE_MAP = [ | |
[0, 1, 2, 3, 2, 3, 4, 3, 4, 5], # 0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class Permutation | |
* | |
* i.e. | |
* input: 'abc' | |
* | |
* We want to enumerate all the leaves | |
* |