/AlgorithmsFromTheBook.jl

Julia code in Kenneth Lange's Algorithms from THE BOOK

Primary LanguageJulia

AlgorithmsFromTheBook.jl

Build Status Code Coverage
Build Status Build status Coverage Status codecov

AlgorithmsFromTheBook.jl collects the Julia code in Kenneth Lange's book Algorithms from THE BOOK. To access the functions in the book, simply install the package in Julia v1.0 or later

using Pkg   
Pkg.clone("https://github.com/KennethLange/AlgorithmsFromTheBook.jl.git")

For example, to test the Euclid algorithm in Chapter 1,

using AlgorithmsFromTheBook  
gcd = euclid(600, 220)

To read the source code of a function,

@edit euclid(600, 220)