mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-07-09 13:45:22 +08:00
Pyupgrade to Python 3.9 (#4718)
* Pyupgrade to Python 3.9 * updating DIRECTORY.md Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
@ -22,7 +22,7 @@ def solution(filename: str = "matrix.txt") -> int:
|
||||
>>> solution()
|
||||
427337
|
||||
"""
|
||||
with open(os.path.join(os.path.dirname(__file__), filename), "r") as in_file:
|
||||
with open(os.path.join(os.path.dirname(__file__), filename)) as in_file:
|
||||
data = in_file.read()
|
||||
|
||||
grid = [[int(cell) for cell in row.split(",")] for row in data.strip().splitlines()]
|
||||
|
Reference in New Issue
Block a user