You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A Clojure app to sort a given large list of numbers using a parallelized merge sort algorithm.
The point of this exercise was to become acquainted with Clojure and gain experience with a functional language.
About
A parallelized merge sort program written in Clojure. The merge sort algorithm is designed to run on 2, 4, 8, 16, and 32 threads and is an exercise in implementing parallelism using a functional language.