Skip to main content

A library to help developers use complex algorithms without having to code it themselves

Project description

AlgoSolver

Build Status codecov PyPI readthedocs

Overview

My goal is to develop a library in python to help programmers solve a variety of algorithms style questions. For example, with Dynamic Programming problems the main things we need to know are if we are using a 1D of 2D array, what the base case is, and what the recurrence relation is. With this in mind, we can create multiple templates for different types of questions to take out the implementation process. I wanted to have a special focus on graph algorithms for the library. This will allow programmers to spend more of their time thinking about high level design questions.

Installation

To install, run the following:

pip install AlgoSolver

Usage

Searching

The following code will find the index of a given number 'num' in an array 'arr' .

arr: An array you are searching through. num: A number you are searching for.

from algo_solver import searching as s

index = s.binary_search(arr = [1,5,3,2], num = 3)
print(index)

Graphs

The following code will give a set of all nodes in the graph through bfs. It is given a graph 'graph' and starting point 'start'.

graph: A graph given as an input in the form: {x: [y]], [y: [z]}, ect; start: A node which you are starting at.

from algo_solver import graphs as g

index = g.bfs(graph = {2: [3], 3: []} start = 2)
print(index)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

AlgoSolver-0.1.4.tar.gz (32.8 kB view details)

Uploaded Source

File details

Details for the file AlgoSolver-0.1.4.tar.gz.

File metadata

  • Download URL: AlgoSolver-0.1.4.tar.gz
  • Upload date:
  • Size: 32.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.13

File hashes

Hashes for AlgoSolver-0.1.4.tar.gz
Algorithm Hash digest
SHA256 84c0ae69efbcc3418c098ce4614e1f2256407ebbaf5961a3c76cba3d1f1d33be
MD5 9b4a94363349435609d0bd1d66293508
BLAKE2b-256 d09ae3bc622ff5a762ca59245696bb9151110f57a9210f050a6d592ff623b52a

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page