leetcode
leetcode copied to clipboard
There is no check if value is not valid (1-9) integer
https://github.com/neetcode-gh/leetcode/blob/c49180fc992e6af22b1cb55476f92494be043d04/python/0036-valid-sudoku.py#L2
Considering the problem description: must contain the digits 1-9 without repetition. So there is need a check that:
- value is convertable to Int
- 1 <= value <= 9