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
| from typing import List | |
| class Matrix: | |
| """ | |
| A class to represent a square matrix and perform basic matrix operations like addition and subtraction. | |
| Attributes: | |
| matrix (List[list]): A list of lists where each inner list represents a row of the matrix. | |
| order (int): The order (size) of the square matrix, i.e., the number of rows or columns. | |
| """ |
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
| #!/bin/bash | |
| find . -type d -name '__pycache__' -exec rm -rf {} + |
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
| #!/bin/bash | |
| find . -type d -name '__pycache__' -exec rm -rf {} + |