Skip to content

Instantly share code, notes, and snippets.

View Legend-Mukund's full-sized avatar
:electron:
Illusion is every where but focus.

☆*:.。.ⲘⴑⲔⴑⲚⲆ.。.:*☆ Legend-Mukund

:electron:
Illusion is every where but focus.
View GitHub Profile
@Legend-Mukund
Legend-Mukund / matrix.py
Last active December 9, 2024 12:41
Created by Telegram bot
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.
"""
@Legend-Mukund
Legend-Mukund / s.sh
Created December 9, 2024 10:58
Created by Telegram bot
#!/bin/bash
find . -type d -name '__pycache__' -exec rm -rf {} +
@Legend-Mukund
Legend-Mukund / s.sh
Created December 9, 2024 10:56
Created by Telegram bot
#!/bin/bash
find . -type d -name '__pycache__' -exec rm -rf {} +