This repository contains my solutions to the competitive programming questions from the CSES Problem Set.
This repository is a collection of solutions to CSES problems. Each problem has its own folder containing the solution in a specific language (mainly in C++).
The basic structure of the repository is as follows:
Make sure to include detailed information on how the problems are organized.
Se você gostaria de contribuir, siga estas etapas:
- Fork the repository.
- Create a branch for your contribution:
git checkout -b your-contribution. - Make desired changes.
- Commit your changes:
git commit -m 'Adding solution for problemX with languageY'. - Push to the branch:
git push origin your-contribution. - Open a pull request explaining your changes.
- Keep the code clean and well-documented.
- Follow the best practices of the language used.
This project is licensed under the MIT License.
Este repositório contém minhas soluções para as questões de programação competitiva do CSES Problem Set.
Este repositório é uma coleção de soluções para problemas do CSES. Cada problema tem sua própria pasta, contendo a solução em uma linguagem específica (principalmente em C++).
A estrutura básica do repositório é a seguinte:
Certifique-se de incluir informações detalhadas sobre como os problemas estão organizados.
Se você gostaria de contribuir, siga estas etapas:
- Faça um fork do repositório.
- Crie um branch para a sua contribuição:
git checkout -b sua-contribuicao. - Faça as alterações desejadas.
- Commit suas alterações:
git commit -m 'Adicionando solução para problemaX em linguagemY'. - Push para o branch:
git push origin sua-contribuicao. - Abra um pull request explicando suas alterações.
- Mantenha o código limpo e bem documentado.
- Siga as melhores práticas da linguagem utilizada.
Este projeto é licenciado sob a MIT License.
- Introductory Problems 17/19
- Sorting and Searching 10/35
- Dynamic Programming 1/19
- Graph Algorithms 7/36
- Range Queries 4/19
- Tree Algorithms 1/16
- Mathematics 17/31
- String Algorithms 1/17
- Geometry 0/7
- Advanced Techniques