Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elisaborba/algorithms
https://github.com/elisaborba/algorithms
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/elisaborba/algorithms
- Owner: ElisaBorba
- Created: 2024-04-28T23:42:15.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-29T00:17:15.000Z (8 months ago)
- Last Synced: 2024-04-30T00:36:07.107Z (8 months ago)
- Language: Python
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Algorithms
Uma série de desafios lógicos resolvidos em Python.
## Desafios
* **challenge_anagrams.py:** Funções para ordenar arrays usando o algoritmo de merge sort, e verifica se duas strings são anagramas.* **challenge_palindromes_iterative.py & challenge_palindromes_recursive.py:** Funções para verificar se uma palavra é um palíndromo, tanto de forma iterativa quanto recursiva.
* **challenge_study_schedule.py:** Funções para gerenciar horários de estudo e contar estudantes presentes em horários específicos.
* * **test_encrypt_message.py:** Casos de teste para a função *encrypt_message*### Como Executar
1️⃣ Crie o ambiente virtual:
```
python3 -m venv .venv && source .venv/bin/activate
```
2️⃣ Instale as dependências:
```
python3 -m pip install -r dev-requirements.txt
```