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
- Host: GitHub
- URL: https://github.com/jonathanyiv/merge_sort
- Owner: JonathanYiv
- Created: 2017-08-19T05:25:43.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-08-19T22:24:42.000Z (almost 9 years ago)
- Last Synced: 2025-02-26T05:33:22.618Z (over 1 year ago)
- Topics: merge-sort, ruby
- Language: Ruby
- Homepage:
- Size: 74.2 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).

## 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.