1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
/// # sort
/// `sort` a collection of commonly used sorting algorithms.
///
pub mod sort;

/// # compare
/// `compare` comparing two strings to find either the longest common subsequence or substring
///
pub mod compare;

/// # search
/// `search` find a value or the index of a value within an array
///
pub mod search;