Skip to content

Adding Linear Search #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Adding Linear Search #11

wants to merge 3 commits into from

Conversation

JasonJTomlin
Copy link

Linear Search added. Another search for the collection!

Added a Linear Search.
Adding Linear Search
Copy link
Owner

@abranhe abranhe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi, @JasonJTomlin thanks for contributing to The All ▲lgorithms project, the huge collection of algorithms implemented in different languages.

Before merging the pull request you will need to review the contributing guide because there are changes must be done.

├── allalgorithms
│   │── sorting
|   |    │── bubble_sort.py
|   |    └── merge_sort.py
│   └── searches
|        │── binary_search.py
|        └── linear_search.py
├── docs
│   │── sorting
|   |    │── bubble-sort.md
|   |    └── merge-sort.md
│   └── searches
|        │── binary-search.md
|        └── linear-search.md
└── tests
    │── test_searches.py
    └── test_sorting.py

The above style is required so you may need to add the algorithm along the tests and documentation

@abranhe abranhe added Tests needed Test are required, so should be added Documentation needed Documentation is required, so should be added labels Oct 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Documentation needed Documentation is required, so should be added Tests needed Test are required, so should be added
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants