Skip to content

Instantly share code, notes, and snippets.

View digitalashes's full-sized avatar
🤖
Let's commence preparations for rumbling!

Oleksii digitalashes

🤖
Let's commence preparations for rumbling!
View GitHub Profile
@digitalashes
digitalashes / binary_search.py
Created November 28, 2017 08:37
Binary Search in Python
# iterative implementation of binary search in Python
def binary_search(a_list, item):
"""Performs iterative binary search to find the position of an integer in a given, sorted, list.
a_list -- sorted list of integers
item -- integer you are searching for the position of
"""
@digitalashes
digitalashes / README-Template.md
Created November 17, 2017 15:43 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites