Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.25 KB

File metadata and controls

42 lines (32 loc) · 1.25 KB

Contributing to "RFO Solutions"

Thank you for your interest in contributing to this Azerbaijani Informatics Olympiad solutions repository! 🎉

How to Contribute

📝 Adding New Solutions

  1. Fork this repository - Create your own copy of the project
  2. Clone your forked repository - Download it to your local machine
    git clone https://github.com/<your-username>/RFO-Solutions.git
    cd RFO-Solutions
  3. Create a new branch for your solution - Keep your changes organized
    git checkout -b your-branch-name
  4. Add your solution file with a descriptive name - Use problem titles in filename
  5. Include comments explaining your approach - Help others understand your logic
  6. Submit a pull request - Share your contribution with the community
    git add .
    git commit -m "<Your descriptive commit message>"
    git push origin <your-branch-name>

📋 Guidelines

  • Use clear filenames and add explanatory comments
  • Follow PEP 8 (Python) or consistent style (C++)
  • Include time/space complexity when possible

🐛 Issues & Improvements

  • Report bugs with test cases
  • Suggest optimizations or alternative approaches
  • Improve code readability

Happy coding! 🚀