Thank you for your interest in contributing to our repository! To ensure consistency and organization, please follow the steps below when adding your contributions.
- Open the folder corresponding to the department your contribution belongs to. The available departments are:
CSE
CSE-CYBER SECURITY
ARTIFICIAL INTELLIGENCE
ARTIFICIAL INTELLIGENCE AND DATA SCIENCE
- Inside the department folder, navigate to the folder of the lab where your program should be added.
- Inside the lab folder, create a new folder. Name this folder according to the name of your program. For example, if your program is "Matrix Multiplication," name the folder
MatrixMultiplication
.
Inside your program's folder, add the following files:
-
Program File
- This file should contain the code for your program. Name it appropriately based on the programming language used, e.g.,
MatrixMultiplication.py
for Python,MatrixMultiplication.java
for Java, etc.
- This file should contain the code for your program. Name it appropriately based on the programming language used, e.g.,
-
Output File
- This file should contain the output of your program when executed. Name it
output.txt
. If there are multiple outputs, you can create separate files likeoutput1.txt
,output2.txt
, etc.
- This file should contain the output of your program when executed. Name it
-
README File
- This file should describe what the program does, how it works, and any special instructions for running it. Name it
README.md
.
- This file should describe what the program does, how it works, and any special instructions for running it. Name it
- After adding the files, commit your changes with a descriptive commit message, e.g.,
Added Matrix Multiplication program for CSA Lab
. - Push the changes to the appropriate branch or create a pull request to the main branch.
├── CSE
│ ├── Lab1
│ │ ├── MatrixMultiplication
│ │ │ ├── MatrixMultiplication.py
│ │ │ ├── output.txt
│ │ │ └── README.md
│ ├── Lab2
│ │ ├── ...
├── CSE-CYBER SECURITY
│ ├── Lab1
│ │ ├── ...
- Ensure your code is properly commented and follows the repository’s coding standards.
- Your pull request should be linked to a relevant issue if applicable.
- Before submitting, make sure there are no merge conflicts.
Thank you for your contribution!