From 69e1ea61b96d3aeefd3dc1354a64fc712f25ef79 Mon Sep 17 00:00:00 2001 From: kirk gardner Date: Mon, 2 Apr 2018 21:58:02 -0400 Subject: [PATCH] first commit --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..cfff460 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Julia Sample Code + +Sample txt files are located in the tests directory. + +Included are a number of implementations of the word frequency functionality (wff) in Julia using dictionaries and user-defined types. + +An additional implementation which uses user defined modules is also provided. + +## Dictionaries +### wff_dict_verbose.jl + +Verbose implementation of wff using dictionaries. + +### wff_dict.jl + +Implementation of wff using dictionaries with compact code. + +## Types +### wff_types_verbose.jl + +Verbose implementation of wff using types + +### wff_types.jl + +Implementation of wff using types with compact code. + +## Modules +### modules/wff.jl + +A module which provides functions necessary for implementing wff.