An open API service indexing awesome lists of open source software.

https://github.com/jonathanyiv/merge_sort

Implementation of Merge Sort in Ruby
https://github.com/jonathanyiv/merge_sort

merge-sort ruby

Last synced: about 1 year ago
JSON representation

Implementation of Merge Sort in Ruby

Awesome Lists containing this project

README

          

# Merge Sort Project

This is my version of implementing the [merge sort](https://en.wikipedia.org/wiki/Merge_sort) in ruby.

This is a project from [The Odin Project](https://www.theodinproject.com/courses/ruby-programming/lessons/recursion).

![Merge Sort GIF](/Merge-sort-example-300px.gif)

## Installation

Open your Terminal/Command Line. Navigate to the directory where your version will live. Type in the following:

```
$ git clone https://github.com/JonathanYiv/merge_sort.git
$ cd merge_sort
$ ruby merge_sort.rb
```

## Pre-Project Thoughts

No particular thoughts.

## Post-Project Thoughts

Implementing was about light to moderate difficulty.