Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 525 Bytes

README.md

File metadata and controls

56 lines (38 loc) · 525 Bytes

merge-sorting

This repo contains several implementation of merge sorting algorithm

Python version

Python2 is obsolete. Use Python3.

$ python3 python/main.py

PHP version

$ php php/index.php

nodejs version

$ node nodejs/index.js

java version

$ java java/main.java

golang version

$ go run ./golang/

ruby version

$ ruby ruby/main.rb

rust version

$ cd rust
$ cargo run

C++ version

$ cd cpp
$ g++ main.cpp -o main
$ ./main