Repository where I mostly put random python scripts.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
jrtechs f5ae872fa5 Added parallel java notebook to repo před 3 roky
ML Cookbook Merge pull request #30 from THIYAGU22/patch-3 před 4 roky
config Added vim configuration file to repository. před 5 roky
fibonacci Implemented the closed definition of fibonacci. před 5 roky
geneticAlgorithm Added comments to GA algo před 5 roky
graphing Adds Floyd Warshall Algorithm před 4 roky
multiThreadedFileIO Wrote tests to compare the read time of files vs number of cpu threads used. před 5 roky
notebooks Added parallel java notebook to repo před 3 roky
other Create Dijkstra.py před 4 roky
perceptron Perceptron algorithm před 4 roky
searching_algo added exponential searching algo před 4 roky
sorting bucket sort added před 4 roky
windows/Sticky Notes Backuper Created simple program to backup windows sticky notes. před 5 roky
.DS_Store QuickBubblesortwithgood complexity před 5 roky
.gitignore queque python před 5 roky
LICENSE Initial commit před 5 roky
README.md Add contributing guidelines to the README před 5 roky
bfs.py BFS před 4 roky
dfs.py Update dfs.py před 4 roky
recurrences.py Added file which has two ways for doing quick sort. před 5 roky
text_preprocessing.py Fixed - to display the output před 4 roky

README.md

Dependencies

Matplotlib

python -m pip install -U pip
python -m pip install -U matplotlib

Contributing

Modified from Atom's CONTRIBUTING.md

First off, thanks for taking the time to contribute!

The following is a set of guidelines for contributing. These are mostly guidelines, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

How Can I Contribute?

Basic Guide

  1. Fork the repository
  2. git clone the repository to your local working space
  3. Make changes
  4. git status to check your untracked changes, git add added/modified files
  5. git commit your changes, include a message if you want.
  6. git push to your forked repository
  7. Open a pull request in GitHub.

Reporting Bugs

How Do I Submit A (Good) Bug Report? Bugs are tracked as GitHub issues. After you've determined which repository your bug is related to, create an issue on that repository and provide the following information by filling in the template.

Explain the problem and include additional details to help maintainers reproduce the problem:

  • Use a clear and descriptive title for the issue to identify the problem.
  • Describe the exact steps which reproduce the problem in as many details as possible. When listing steps, don't just say what you did, but explain how you did it.
  • Provide specific examples to demonstrate the steps. Include links to files or GitHub projects, or copy/pasteable snippets, which you use in those examples. If you're providing snippets in the issue, use Markdown code blocks.
  • Describe the behavior you observed after following the steps and point out what exactly is the problem with that behavior.
  • Explain which behavior you expected to see instead and why.

Suggesting Enhancements

How Do I Submit A (Good) Enhancement Suggestion?

Enhancement suggestions are tracked as GitHub issues. Create an issue on the repository and provide the following information:

  • Use a clear and descriptive title for the issue to identify the suggestion.
  • Provide specific examples to demonstrate the steps. Include copy/pasteable snippets which you use in those examples, as Markdown code blocks.
  • Describe the current behavior and explain which behavior you expected to see instead and why.