* Added `Array` object, an array that is ALWAYS 2-dimensional:
+ supported attributes: `.show`, `.nrow`, `.ncol`, `.shape`, `.size`
+ supported methods: `.__eq__()`, `.__getitem__()`, `.__setitem__()`, `.__repr__()`, `.copy()`, `.flatten()`, `.itemset()`, `.reshape()`
* Added two tests in `tests.py`: `test_init_detect_typo_elements_none()` and `test_init_detect_typo_elements_specific()`.
* Added `TestArray(unittest.TestCase)` in `tests.py`.
* Changed the name of `array.py` to `sarray.py`
* Edited `test_init_detect_answer()` to test two features: answer-form detection and empty-specification irrelevance.
* Made `sudoku.py` completely numpy-free