|
10 | 10 | * [Affine](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/cipher/affine.jl)
|
11 | 11 | * [Atbash](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/cipher/atbash.jl)
|
12 | 12 | * [Caesar](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/cipher/caesar.jl)
|
| 13 | + * [Vigenere](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/cipher/vigenere.jl) |
13 | 14 | * Conversions
|
14 | 15 | * [Conversions](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/conversions/Conversions.jl)
|
15 | 16 | * [Length Conversion](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/conversions/length_conversion.jl)
|
|
18 | 19 | * Data Structures
|
19 | 20 | * [Datastructure](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/DataStructure.jl)
|
20 | 21 | * [Binary Heap](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/binary_heap.jl)
|
| 22 | + * [Fenwick Tree](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/fenwick_tree.jl) |
| 23 | + * [Linked List](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/linked_list.jl) |
21 | 24 | * Binary Tree
|
22 | 25 | * [Basic Binary Search Tree](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/binary_tree/basic_binary_search_tree.jl)
|
23 | 26 | * [Basic Binary Tree](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/binary_tree/basic_binary_tree.jl)
|
24 | 27 | * [Splay](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/binary_tree/splay.jl)
|
25 | 28 | * Disjoint Set
|
26 | 29 | * [Disjoint Set](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/disjoint_set/disjoint_set.jl)
|
27 |
| - * [Fenwick Tree](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/fenwick_tree.jl) |
28 |
| - * [Linked List](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/data_structures/linked_list.jl) |
29 | 30 | * Dynamic Programming
|
30 | 31 | * [Dynamicprogramming](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/dynamic_programming/DynamicProgramming.jl)
|
31 | 32 | * [Coin Change](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/dynamic_programming/coin_change.jl)
|
|
50 | 51 | * Math
|
51 | 52 | * [Math](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/math/Math.jl)
|
52 | 53 | * [Abs](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/math/abs.jl)
|
| 54 | + * [Amicable Numbers](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/math/amicable_numbers.jl) |
53 | 55 | * [Area](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/math/area.jl)
|
54 | 56 | * [Armstrong Number](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/math/armstrong_number.jl)
|
55 | 57 | * [Average Absolute Deviation](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/math/average_absolute_deviation.jl)
|
|
103 | 105 | * [Problem 006](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_006.jl)
|
104 | 106 | * [Problem 007](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_007.jl)
|
105 | 107 | * [Problem 008](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_008.jl)
|
| 108 | + * [Problem 009](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_009.jl) |
| 109 | + * [Problem 010](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_010.jl) |
| 110 | + * [Problem 011](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_011.jl) |
| 111 | + * [Problem 012](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_012.jl) |
| 112 | + * [Problem 013](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_013.jl) |
| 113 | + * [Problem 014](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_euler/problem_014.jl) |
106 | 114 | * Project Rosalind
|
107 | 115 | * [Projectrosalind](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_rosalind/ProjectRosalind.jl)
|
108 | 116 | * [Count Nucleotide](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/project_rosalind/count_nucleotide.jl)
|
|
143 | 151 | * [Is Palindrome](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/is_palindrome.jl)
|
144 | 152 | * [Kmp Substring Search](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/kmp_substring_search.jl)
|
145 | 153 | * [Lcs](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/lcs.jl)
|
| 154 | + * [Naive Pattern Search](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/naive_pattern_search.jl) |
146 | 155 | * [Pangram](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/pangram.jl)
|
147 | 156 | * [Rabin Karp](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/rabin_karp.jl)
|
148 | 157 | * [Word Count](https://github.com/TheAlgorithms/Julia/blob/HEAD/src/strings/word_count.jl)
|
| 158 | + |
0 commit comments