Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 948 Bytes

File metadata and controls

32 lines (28 loc) · 948 Bytes

Learning Algorithm

Build

This repository is mean't to serve as learning algorithm from various books and portals like:

  • Cracking the coding interview

Contents

  • algorithm-ctci
    • ch1: arrays & strings

Install

This project uses java and maven. Please follow the below bash instructions to install this project.

  1. Install java using homebrew. Skip this step in case its already installed and configured.
    brew cask install adoptopenjdk8
  2. Install maven using homebrew. Skip this step in case its already installed and configured.
    brew install maven
  3. Clone repository
    git clone https://github.com/mddeepaksoni/learning-algorithm.git
  4. Build
    cd learning-algorithm
    mvn clean install

Authors