|
1 | 1 | <div align="center"> |
2 | | -<!-- Title: --> |
3 | | - <a href="https://github.com/TheAlgorithms/"> |
4 | | - <img src="https://raw.githubusercontent.com/TheAlgorithms/website/1cd824df116b27029f17c2d1b42d81731f28a920/public/logo.svg" height="100"> |
5 | | - </a> |
6 | | - <h1><a href="https://github.com/TheAlgorithms/">The Algorithms</a> - Python</h1> |
7 | 2 |
|
8 | | -<!-- Labels: --> |
9 | | - <!-- First row: --> |
| 3 | +<!-- Project Logo --> |
| 4 | +<a href="https://github.com/TheAlgorithms/"> |
| 5 | + <img src="https://raw.githubusercontent.com/TheAlgorithms/website/1cd824df116b27029f17c2d1b42d81731f28a920/public/logo.svg" height="100" alt="The Algorithms Logo"> |
| 6 | +</a> |
| 7 | + |
| 8 | +<h1><a href="https://github.com/TheAlgorithms/">The Algorithms</a> β Python π</h1> |
| 9 | + |
| 10 | +<h3>All Algorithms Implemented in Python β For Learning and Exploration π</h3> |
| 11 | + |
| 12 | +<!-- Badges Row 1 --> |
| 13 | +<p> |
10 | 14 | <a href="https://gitpod.io/#https://github.com/TheAlgorithms/Python"> |
11 | 15 | <img src="https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod&style=flat-square" height="20" alt="Gitpod Ready-to-Code"> |
12 | 16 | </a> |
13 | 17 | <a href="https://github.com/TheAlgorithms/Python/blob/master/CONTRIBUTING.md"> |
14 | 18 | <img src="https://img.shields.io/static/v1.svg?label=Contributions&message=Welcome&color=0059b3&style=flat-square" height="20" alt="Contributions Welcome"> |
15 | 19 | </a> |
16 | | - <img src="https://img.shields.io/github/repo-size/TheAlgorithms/Python.svg?label=Repo%20size&style=flat-square" height="20"> |
| 20 | + <img src="https://img.shields.io/github/repo-size/TheAlgorithms/Python.svg?label=Repo%20size&style=flat-square" height="20" alt="Repository Size"> |
17 | 21 | <a href="https://the-algorithms.com/discord"> |
18 | | - <img src="https://img.shields.io/discord/808045925556682782.svg?logo=discord&colorB=7289DA&style=flat-square" height="20" alt="Discord chat"> |
| 22 | + <img src="https://img.shields.io/discord/808045925556682782.svg?logo=discord&colorB=7289DA&style=flat-square" height="20" alt="Discord Chat"> |
19 | 23 | </a> |
20 | 24 | <a href="https://gitter.im/TheAlgorithms/community"> |
21 | | - <img src="https://img.shields.io/badge/Chat-Gitter-ff69b4.svg?label=Chat&logo=gitter&style=flat-square" height="20" alt="Gitter chat"> |
| 25 | + <img src="https://img.shields.io/badge/Chat-Gitter-ff69b4.svg?label=Chat&logo=gitter&style=flat-square" height="20" alt="Gitter Chat"> |
22 | 26 | </a> |
| 27 | +</p> |
23 | 28 |
|
24 | | - <!-- Second row: --> |
25 | | - <br> |
| 29 | +<!-- Badges Row 2 --> |
| 30 | +<p> |
26 | 31 | <a href="https://github.com/TheAlgorithms/Python/actions"> |
27 | 32 | <img src="https://img.shields.io/github/actions/workflow/status/TheAlgorithms/Python/build.yml?branch=master&label=CI&logo=github&style=flat-square" height="20" alt="GitHub Workflow Status"> |
28 | 33 | </a> |
29 | 34 | <a href="https://github.com/pre-commit/pre-commit"> |
30 | 35 | <img src="https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white&style=flat-square" height="20" alt="pre-commit"> |
31 | 36 | </a> |
32 | 37 | <a href="https://docs.astral.sh/ruff/formatter/"> |
33 | | - <img src="https://img.shields.io/static/v1?label=code%20style&message=ruff&color=black&style=flat-square" height="20" alt="code style: black"> |
| 38 | + <img src="https://img.shields.io/static/v1?label=code%20style&message=ruff&color=black&style=flat-square" height="20" alt="code style: ruff"> |
34 | 39 | </a> |
| 40 | +</p> |
35 | 41 |
|
36 | | -<!-- Short description: --> |
37 | | - <h3>All algorithms implemented in Python - for education π</h3> |
38 | 42 | </div> |
39 | 43 |
|
40 | | -Implementations are for learning purposes only. They may be less efficient than the implementations in the Python standard library. Use them at your discretion. |
| 44 | +--- |
41 | 45 |
|
42 | | -## π Getting Started |
| 46 | +## π§ About the Project |
43 | 47 |
|
44 | | -π Read through our [Contribution Guidelines](CONTRIBUTING.md) before you contribute. |
| 48 | +This repository contains **hundreds of algorithms implemented in Python** β from data structures to machine learning, cryptography, mathematics, and more. |
| 49 | +Our goal is to make it easy for anyone to learn algorithms by reading clean and well-documented code. |
45 | 50 |
|
46 | | -## π Community Channels |
| 51 | +> β οΈ **Note:** These implementations are for educational purposes. They may not be optimized for production use. |
47 | 52 |
|
48 | | -We are on [Discord](https://the-algorithms.com/discord) and [Gitter](https://gitter.im/TheAlgorithms/community)! Community channels are a great way for you to ask questions and get help. Please join us! |
| 53 | +--- |
49 | 54 |
|
50 | | -## π List of Algorithms |
| 55 | +## π Getting Started |
51 | 56 |
|
52 | | -See our [directory](DIRECTORY.md) for easier navigation and a better overview of the project. |
| 57 | +1. **Clone this repository:** |
| 58 | + ```bash |
| 59 | + git clone https://github.com/TheAlgorithms/Python.git |
0 commit comments