commit cb226e59895525ff75a0799ac75a6909e43e6b80
parent ffc86e0498769847474d6304d07d079954da0707
Author: Amit Dutta <mail@amit.is-a.dev>
Date: Mon, 27 Jul 2026 06:51:18 +0530
updated docs, and moved to [Micro](https://micro-editor.github.io/) from VSCode
Diffstat:
3 files changed, 14 insertions(+), 6 deletions(-)
diff --git a/docs/semester_2/index.md b/docs/semester_2/index.md
@@ -20,12 +20,14 @@ This folder contains all my current academic work, including practicals, assignm
| 3 | Tuition | [Open Folder](tuition/index.md) |
| 4 | Python | [Open Folder](python/index.md) |
| 5 | Algorithm | [Open Folder](algorithms/index.md) |
+| 6 | Assignments | [Open Folder](assignments/index.md) |
## Directory Structure
To keep the repository organized, the C++ and Python programs are divided into specific categories based on their origin and purpose.
### C++ Programming (Data Structures)
+* **`/assignments`**: Assignmets cpp, odt and pdf files.
* **`/practice/`**: General, day-to-day CPP programming practice files.
* **`/tuition/`**: Programs and problem-solving exercises completed during tuition classes.
* **`/algorithms/`**: Some algorithms.
@@ -68,4 +70,4 @@ Ensure you have Python 3 installed, or run the scripts via an IDE such as VS Cod
3. Execute the script using `python3`:
```bash
python3 Python_Prac-1.py
-```-
\ No newline at end of file
+```
diff --git a/semester_2/README.md b/semester_2/README.md
@@ -15,6 +15,7 @@
To keep the repository organized, the C++ and Python programs are divided into specific categories based on their origin and purpose.
### C++ Programming (Data Structures)
+* **`/assignments`**: Assignmets cpp, odt and pdf files.
* **`/practice/`**: General, day-to-day CPP programming practice files.
* **`/tuition/`**: Programs and problem-solving exercises completed during tuition classes.
* **`/algorithms/`**: Some algorithms.
@@ -57,4 +58,4 @@ Ensure you have Python 3 installed, or run the scripts via an IDE such as VS Cod
3. Execute the script using `python3`:
```bash
python3 Python_Prac-1.py
-```-
\ No newline at end of file
+```
diff --git a/semester_2/assignments/assignment_01.cpp b/semester_2/assignments/assignment_01.cpp
@@ -1,3 +1,11 @@
+/*
+ * Author: Amit Dutta (amitdutta4255@gmail.com)
+ * Repo: https://github.com/notamitgamer/bsc
+ * License: MIT
+ */
+/* Write a program to implement a Diagonal Matrix a Lower Triangular Matrix, an Upper Triangular Matrix, and a
+Symmetric Matrix using a one-dimensional array. */
+
#include <iostream>
using namespace std;
@@ -147,4 +155,4 @@ int main()
cout << "Invalid Choice.";
}
return 0;
-}-
\ No newline at end of file
+}