/grokking-algorithms

This repository houses the code for all the algorithms and exercises I wrote while reading "Grokking Algorithms by Aditya Bhargava"

Primary LanguagePython

Grokking Algorithms

This repository contains Python implementations of algorithms and exercises from the "Grokking Algorithms" book by Aditya Bhargava. Each algorithm is accompanied by a set of test cases to ensure its correctness.

Table of Contents

  1. Introduction
  2. Getting Started
  3. Algorithm List
  4. Running Tests
  5. Contributing
  6. License

Introduction

The "Grokking Algorithms" book is a fantastic resource for understanding fundamental algorithms and data structures. This repository aims to provide Python implementations for the algorithms covered in the book, along with corresponding tests.

Feel free to use this code as a reference while reading the book or as a supplement to your algorithmic studies. Contributions and improvements are welcome!

Getting Started

To get started with the code in this repository, follow these steps:

  1. Clone the repository to your local machine:
   git clone https://github.com/ayo-awe/grokking-algorithms.git
  1. Navigate to the project directory:
   cd grokking-algorithms-python

Algorithm List

The following algorithms and exercises from the book are implemented in this repository:

  • Binary Search
  • Selection Sort
  • Recursive Max
  • Recursive Len

Each algorithm has its own dedicated Python file in the algorithms directory.

Running Tests

Tests are included for each algorithm to verify their correctness. To run the tests, use the following command:

python -m unittest discover tests

This command will discover and run all tests in the tests directory.

Contributing

Contributions are highly encouraged! If you find any issues, have suggestions for improvements, or want to add new algorithms, please open an issue or submit a pull request. Make sure to follow the existing code style and include relevant test cases.