https://github.com/ash515/pyalgorithms
All Python Algorithms 📝.
https://github.com/ash515/pyalgorithms
algorithms codes implementation python
Last synced: 2 months ago
JSON representation
All Python Algorithms 📝.
- Host: GitHub
- URL: https://github.com/ash515/pyalgorithms
- Owner: Ash515
- Created: 2020-11-03T08:09:37.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-18T12:02:43.000Z (about 4 years ago)
- Last Synced: 2025-03-10T19:56:32.046Z (7 months ago)
- Topics: algorithms, codes, implementation, python
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PyAlgorithms ❤
Algorithm means “a process or set of rules to be followed in calculations or other problem-solving operations”. Therefore Algorithm refers to a set of rules/instructions that step-by-step define how a work is to be executed upon in order to get the expected results.📝🔍
# Index
1. **Searching**
- Linear Search
- Binary Search
- Jump Search
- Interpolation Search
2. **Sorting**
- Bubble Sort
- Merge Sort
- Selection Sort
- Insertion Sort
# 🚀 Installation
1. Clone the repository
```
https://github.com/Ash515/PyAlgorithms.git
```
2. Check the status of your file
```
$git status
```3.For using VScode for editing your files
```
$git code .
```
4. To directly add your files to github
```
$git add .
```
5. After writing your code commit your changes
```
$git commit -m
```
6. To pull your code to reposoitory
```
$git push origin master
```
Thats all about installation and version control with **Git**