|
| 1 | +# List of all files |
1 | 2 |
|
| 3 | +## Misc |
| 4 | + * [2048](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/2048.s) |
| 5 | + * [Hello World](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/hello_world.s) |
| 6 | + * [Josephus Problem](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/josephus_problem.s) |
| 7 | + * [Perfect Numbers](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/perfect_numbers.s) |
| 8 | + * [Sha1](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/sha1.s) |
| 9 | + * [Sha256](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/sha256.s) |
| 10 | + * [Y Combinator](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/misc/y_combinator.s) |
| 11 | + |
| 12 | +## Sorters |
| 13 | + * [Bead Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/bead_sort.s) |
| 14 | + * [Bogo Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/bogo_sort.s) |
| 15 | + * [Bubble Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/bubble_sort.s) |
| 16 | + * [Circle Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/circle_sort.s) |
| 17 | + * [Cocktail Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/cocktail_sort.s) |
| 18 | + * [Comb Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/comb_sort.s) |
| 19 | + * [Counting Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/counting_sort.s) |
| 20 | + * [Gnome Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/gnome_sort.s) |
| 21 | + * [Heap Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/heap_sort.s) |
| 22 | + * [Insertion Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/insertion_sort.s) |
| 23 | + * [Jort Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/jort_sort.s) |
| 24 | + * [Merge Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/merge_sort.s) |
| 25 | + * [Pancake Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/pancake_sort.s) |
| 26 | + * [Patience Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/patience_sort.s) |
| 27 | + * [Permutation Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/permutation_sort.s) |
| 28 | + * [Quick Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/quick_sort.s) |
| 29 | + * [Radix Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/radix_sort.s) |
| 30 | + * [Selection Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/selection_sort.s) |
| 31 | + * [Shell Sort](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/sorters/shell_sort.s) |
| 32 | + |
| 33 | +## String |
| 34 | + * [Append](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/append.s) |
| 35 | + * [Comparison](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/comparison.s) |
| 36 | + * [Concatenation](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/concatenation.s) |
| 37 | + * [Interpolation](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/interpolation.s) |
| 38 | + * [Length](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/length.s) |
| 39 | + * [Matching](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/matching.s) |
| 40 | + * [Prepend](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/prepend.s) |
| 41 | + * [Substring](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/substring.s) |
| 42 | + * [Tokenize String](https://github.com/TheAlgorithms/AArch64_Assembly/blob/main/string/tokenize_string.s) |
0 commit comments