2020-04-16 16:24:20 +02:00
|
|
|
|
2021-04-01 18:54:50 +02:00
|
|
|
## Backtracking
|
|
|
|
* [Generate Paranthesis](https://github.com/TheAlgorithms/Ruby/blob/master/backtracking/generate_paranthesis.rb)
|
|
|
|
|
2021-03-20 17:53:02 +01:00
|
|
|
## Bit Manipulation
|
2021-05-02 17:51:26 +02:00
|
|
|
* [Binary And Operator](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/binary_and_operator.rb)
|
|
|
|
* [Binary Count Setbits](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/binary_count_setbits.rb)
|
|
|
|
* [Binary Count Trailing Zeroes](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/binary_count_trailing_zeroes.rb)
|
|
|
|
* [Binary Or Operator](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/binary_or_operator.rb)
|
|
|
|
* [Binary Xor Operator](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/binary_xor_operator.rb)
|
2021-03-20 17:53:02 +01:00
|
|
|
* [Power Of Two](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/power_of_two.rb)
|
2021-05-02 17:51:26 +02:00
|
|
|
* [Single Bit Binary Operations](https://github.com/TheAlgorithms/Ruby/blob/master/bit_manipulation/single_bit_binary_operations.rb)
|
2021-03-20 17:53:02 +01:00
|
|
|
|
2020-10-15 23:42:48 +02:00
|
|
|
## Ciphers
|
2021-10-02 01:49:29 +02:00
|
|
|
* [Caesar](https://github.com/TheAlgorithms/Ruby/blob/master/ciphers/caesar.rb)
|
|
|
|
* [Caesar Test](https://github.com/TheAlgorithms/Ruby/blob/master/ciphers/caesar_test.rb)
|
2020-10-15 23:42:48 +02:00
|
|
|
* [Merkle Hellman Cryptosystem](https://github.com/TheAlgorithms/Ruby/blob/master/ciphers/merkle_hellman_cryptosystem.rb)
|
2021-10-02 01:48:54 +02:00
|
|
|
* [Rsa](https://github.com/TheAlgorithms/Ruby/blob/master/ciphers/rsa.rb)
|
2020-10-15 23:42:48 +02:00
|
|
|
|
2021-04-01 03:57:23 +02:00
|
|
|
## Conversions
|
|
|
|
* [Temperature Conversions](https://github.com/TheAlgorithms/Ruby/blob/master/conversions/temperature_conversions.rb)
|
2021-04-29 13:06:00 +02:00
|
|
|
* [Weight Conversions](https://github.com/TheAlgorithms/Ruby/blob/master/conversions/weight_conversions.rb)
|
2021-04-01 03:57:23 +02:00
|
|
|
|
2020-04-16 16:26:19 +02:00
|
|
|
## Data Structures
|
2020-12-20 05:19:07 +01:00
|
|
|
* Arrays
|
2021-09-03 21:40:13 +02:00
|
|
|
* [3Sum](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/3sum.rb)
|
2021-03-17 16:17:08 +01:00
|
|
|
* [Add Digits](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/add_digits.rb)
|
2021-03-10 01:37:24 +01:00
|
|
|
* [Find All Duplicates In An Array](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/find_all_duplicates_in_an_array.rb)
|
2021-03-10 04:10:23 +01:00
|
|
|
* [Find The Highest Altitude](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/find_the_highest_altitude.rb)
|
2021-03-20 19:10:40 +01:00
|
|
|
* [Fizz Buzz](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/fizz_buzz.rb)
|
2020-12-28 23:37:24 +01:00
|
|
|
* [Get Products Of All Other Elements](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/get_products_of_all_other_elements.rb)
|
2021-04-26 23:03:15 +02:00
|
|
|
* [Good Pairs](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/good_pairs.rb)
|
2021-04-01 01:40:23 +02:00
|
|
|
* [Intersection](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/intersection.rb)
|
2021-06-16 01:14:06 +02:00
|
|
|
* [Max 69 Number](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/max_69_number.rb)
|
2021-09-03 21:40:13 +02:00
|
|
|
* [Maximum Product Subarray](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/maximum_product_subarray.rb)
|
|
|
|
* [Maximum Subarray](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/maximum_subarray.rb)
|
2021-04-10 19:41:17 +02:00
|
|
|
* [Next Greater Element](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/next_greater_element.rb)
|
2021-03-16 05:38:57 +01:00
|
|
|
* [Remove Elements](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/remove_elements.rb)
|
2021-03-29 23:34:30 +02:00
|
|
|
* [Richest Customer Wealth](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/richest_customer_wealth.rb)
|
2021-05-06 01:18:30 +02:00
|
|
|
* [Shortest Word Distance](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/shortest_word_distance.rb)
|
2021-03-29 23:34:55 +02:00
|
|
|
* [Shuffle Array](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/shuffle_array.rb)
|
2021-03-22 15:11:07 +01:00
|
|
|
* [Single Number](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/single_number.rb)
|
2021-03-11 00:29:41 +01:00
|
|
|
* [Sort Squares Of An Array](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/sort_squares_of_an_array.rb)
|
2021-04-16 03:00:45 +02:00
|
|
|
* [Sorted Arrays Intersection](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/sorted_arrays_intersection.rb)
|
2021-03-29 23:54:54 +02:00
|
|
|
* Strings
|
2021-06-29 23:00:08 +02:00
|
|
|
* [Almost Palindrome Checker](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/strings/almost_palindrome_checker.rb)
|
2021-03-30 23:19:43 +02:00
|
|
|
* [Anagram Checker](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/strings/anagram_checker.rb)
|
2021-03-30 00:37:23 +02:00
|
|
|
* [Jewels And Stones](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/strings/jewels_and_stones.rb)
|
2021-04-01 18:31:12 +02:00
|
|
|
* [Palindrome](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/strings/palindrome.rb)
|
2021-03-29 23:54:54 +02:00
|
|
|
* [Remove Vowels](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/strings/remove_vowels.rb)
|
2021-04-29 03:28:23 +02:00
|
|
|
* [Sudoku](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/sudoku.rb)
|
2021-03-11 17:26:48 +01:00
|
|
|
* [Two Sum](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/two_sum.rb)
|
2021-03-16 05:38:57 +01:00
|
|
|
* [Two Sum Ii](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/arrays/two_sum_ii.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
* Binary Trees
|
2023-02-23 06:11:35 +01:00
|
|
|
* [Bst](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/binary_trees/bst.rb)
|
|
|
|
* [Bst Test](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/binary_trees/bst_test.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
* [Inorder Traversal](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/binary_trees/inorder_traversal.rb)
|
|
|
|
* [Invert](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/binary_trees/invert.rb)
|
|
|
|
* [Postorder Traversal](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/binary_trees/postorder_traversal.rb)
|
|
|
|
* [Preorder Traversal](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/binary_trees/preorder_traversal.rb)
|
2021-11-02 07:26:31 +01:00
|
|
|
* Disjoint Sets
|
|
|
|
* [Disjoint Sets](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/disjoint_sets/disjoint_sets.rb)
|
2021-03-29 23:34:30 +02:00
|
|
|
* Hash Table
|
2021-04-01 04:03:14 +02:00
|
|
|
* [Anagram Checker](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/anagram_checker.rb)
|
2021-04-10 18:57:53 +02:00
|
|
|
* [Arrays Intersection](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/arrays_intersection.rb)
|
2021-06-08 04:39:00 +02:00
|
|
|
* [Common Characters](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/common_characters.rb)
|
2021-03-30 00:37:23 +02:00
|
|
|
* [Find All Duplicates In An Array](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/find_all_duplicates_in_an_array.rb)
|
2021-09-03 22:28:30 +02:00
|
|
|
* [Fizz Buzz](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/fizz_buzz.rb)
|
2021-05-14 18:30:49 +02:00
|
|
|
* [Good Pairs](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/good_pairs.rb)
|
2021-06-22 01:56:49 +02:00
|
|
|
* [Isomorphic Strings](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/isomorphic_strings.rb)
|
2021-03-29 23:34:30 +02:00
|
|
|
* [Richest Customer Wealth](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/richest_customer_wealth.rb)
|
2021-03-30 00:37:23 +02:00
|
|
|
* [Two Sum](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/two_sum.rb)
|
2021-05-15 01:36:04 +02:00
|
|
|
* [Uncommon Words](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/hash_table/uncommon_words.rb)
|
2023-02-08 02:06:02 +01:00
|
|
|
* Heaps
|
|
|
|
* [Max Heap](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/heaps/max_heap.rb)
|
|
|
|
* [Max Heap Test](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/heaps/max_heap_test.rb)
|
2020-11-02 08:33:27 +01:00
|
|
|
* Linked Lists
|
2021-02-07 19:24:38 +01:00
|
|
|
* [Circular Linked List](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/linked_lists/circular_linked_list.rb)
|
|
|
|
* [Doubly Linked List](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/linked_lists/doubly_linked_list.rb)
|
|
|
|
* [Singly Linked List](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/linked_lists/singly_linked_list.rb)
|
2020-12-28 00:17:15 +01:00
|
|
|
* Queues
|
2021-05-01 19:33:39 +02:00
|
|
|
* [Circular Queue](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/queues/circular_queue.rb)
|
2020-12-28 00:17:15 +01:00
|
|
|
* [Queue](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/queues/queue.rb)
|
2020-12-27 23:14:26 +01:00
|
|
|
* Stacks
|
|
|
|
* [Stack](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/stacks/stack.rb)
|
2020-12-27 23:15:21 +01:00
|
|
|
* Tries
|
|
|
|
* [Trie](https://github.com/TheAlgorithms/Ruby/blob/master/data_structures/tries/trie.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
|
|
|
|
## Discrete Mathematics
|
|
|
|
* [Euclidean Gcd](https://github.com/TheAlgorithms/Ruby/blob/master/discrete_mathematics/euclidean_gcd.rb)
|
2021-01-28 04:00:40 +01:00
|
|
|
* [Exteded Euclidean Algorithm](https://github.com/TheAlgorithms/Ruby/blob/master/discrete_mathematics/exteded_euclidean_algorithm.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
* [Lcm](https://github.com/TheAlgorithms/Ruby/blob/master/discrete_mathematics/lcm.rb)
|
|
|
|
|
2021-02-28 22:54:00 +01:00
|
|
|
## Dynamic Programming
|
2021-08-25 21:38:33 +02:00
|
|
|
* [Climbing Stairs](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/climbing_stairs.rb)
|
2021-02-28 22:54:00 +01:00
|
|
|
* [Coin Change](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/coin_change.rb)
|
2021-05-17 07:10:48 +02:00
|
|
|
* [Count Sorted Vowel Strings](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/count_sorted_vowel_strings.rb)
|
2021-11-14 23:37:09 +01:00
|
|
|
* [Editdistance](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/editdistance.rb)
|
2021-03-07 22:31:28 +01:00
|
|
|
* [Fibonacci](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/fibonacci.rb)
|
2021-09-05 19:46:37 +02:00
|
|
|
* [House Robber](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/house_robber.rb)
|
2021-11-14 23:36:53 +01:00
|
|
|
* [Knapsack](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/knapsack.rb)
|
2021-09-05 19:40:45 +02:00
|
|
|
* [Ones And Zeros](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/ones_and_zeros.rb)
|
2021-06-08 20:28:22 +02:00
|
|
|
* [Pascal Triangle Ii](https://github.com/TheAlgorithms/Ruby/blob/master/dynamic_programming/pascal_triangle_ii.rb)
|
2021-02-28 22:54:00 +01:00
|
|
|
|
2021-09-04 12:46:22 +02:00
|
|
|
## Electronics
|
|
|
|
* [Ohms Law](https://github.com/TheAlgorithms/Ruby/blob/master/electronics/ohms_law.rb)
|
|
|
|
|
2021-01-05 23:29:01 +01:00
|
|
|
## Maths
|
2021-09-03 21:50:03 +02:00
|
|
|
* [3Nplus1](https://github.com/TheAlgorithms/Ruby/blob/master/maths/3nPlus1.rb)
|
2021-01-09 20:10:44 +01:00
|
|
|
* [Abs](https://github.com/TheAlgorithms/Ruby/blob/master/maths/abs.rb)
|
2021-06-02 08:13:08 +02:00
|
|
|
* [Abs Max](https://github.com/TheAlgorithms/Ruby/blob/master/maths/abs_max.rb)
|
2021-06-02 09:16:42 +02:00
|
|
|
* [Abs Min](https://github.com/TheAlgorithms/Ruby/blob/master/maths/abs_min.rb)
|
2021-01-09 20:10:44 +01:00
|
|
|
* [Abs Test](https://github.com/TheAlgorithms/Ruby/blob/master/maths/abs_test.rb)
|
2021-04-15 01:41:50 +02:00
|
|
|
* [Add](https://github.com/TheAlgorithms/Ruby/blob/master/maths/add.rb)
|
2021-03-19 01:01:28 +01:00
|
|
|
* [Add Digits](https://github.com/TheAlgorithms/Ruby/blob/master/maths/add_digits.rb)
|
2021-01-09 20:10:44 +01:00
|
|
|
* [Aliquot Sum](https://github.com/TheAlgorithms/Ruby/blob/master/maths/aliquot_sum.rb)
|
|
|
|
* [Aliquot Sum Test](https://github.com/TheAlgorithms/Ruby/blob/master/maths/aliquot_sum_test.rb)
|
2021-05-07 16:44:06 +02:00
|
|
|
* [Armstrong Number](https://github.com/TheAlgorithms/Ruby/blob/master/maths/armstrong_number.rb)
|
2021-04-10 06:07:57 +02:00
|
|
|
* [Average Mean](https://github.com/TheAlgorithms/Ruby/blob/master/maths/average_mean.rb)
|
2021-04-15 01:41:50 +02:00
|
|
|
* [Average Median](https://github.com/TheAlgorithms/Ruby/blob/master/maths/average_median.rb)
|
2021-02-05 15:33:53 +01:00
|
|
|
* [Binary To Decimal](https://github.com/TheAlgorithms/Ruby/blob/master/maths/binary_to_decimal.rb)
|
2021-01-05 23:29:01 +01:00
|
|
|
* [Ceil](https://github.com/TheAlgorithms/Ruby/blob/master/maths/ceil.rb)
|
2021-01-09 20:10:44 +01:00
|
|
|
* [Ceil Test](https://github.com/TheAlgorithms/Ruby/blob/master/maths/ceil_test.rb)
|
2021-05-17 06:44:11 +02:00
|
|
|
* [Count Sorted Vowel Strings](https://github.com/TheAlgorithms/Ruby/blob/master/maths/count_sorted_vowel_strings.rb)
|
2021-03-06 21:17:04 +01:00
|
|
|
* [Decimal To Binary](https://github.com/TheAlgorithms/Ruby/blob/master/maths/decimal_to_binary.rb)
|
2021-04-02 20:23:23 +02:00
|
|
|
* [Factorial](https://github.com/TheAlgorithms/Ruby/blob/master/maths/factorial.rb)
|
2021-04-29 03:34:12 +02:00
|
|
|
* [Factorial Non Recursive Non Iterative](https://github.com/TheAlgorithms/Ruby/blob/master/maths/factorial_non_recursive_non_iterative.rb)
|
2021-03-07 21:27:49 +01:00
|
|
|
* [Fibonacci](https://github.com/TheAlgorithms/Ruby/blob/master/maths/fibonacci.rb)
|
2021-04-21 20:12:10 +02:00
|
|
|
* [Find Max](https://github.com/TheAlgorithms/Ruby/blob/master/maths/find_max.rb)
|
2021-04-23 21:55:37 +02:00
|
|
|
* [Find Min](https://github.com/TheAlgorithms/Ruby/blob/master/maths/find_min.rb)
|
2021-05-15 16:43:21 +02:00
|
|
|
* [Lucas Series](https://github.com/TheAlgorithms/Ruby/blob/master/maths/lucas_series.rb)
|
2021-01-28 19:41:14 +01:00
|
|
|
* [Number Of Digits](https://github.com/TheAlgorithms/Ruby/blob/master/maths/number_of_digits.rb)
|
2021-06-08 20:25:23 +02:00
|
|
|
* [Pascal Triangle Ii](https://github.com/TheAlgorithms/Ruby/blob/master/maths/pascal_triangle_ii.rb)
|
2021-03-20 01:00:32 +01:00
|
|
|
* [Power Of Two](https://github.com/TheAlgorithms/Ruby/blob/master/maths/power_of_two.rb)
|
2021-03-28 19:19:48 +02:00
|
|
|
* [Prime Number](https://github.com/TheAlgorithms/Ruby/blob/master/maths/prime_number.rb)
|
2021-05-04 16:46:10 +02:00
|
|
|
* [Roman To Integer](https://github.com/TheAlgorithms/Ruby/blob/master/maths/roman_to_integer.rb)
|
2021-01-05 23:29:01 +01:00
|
|
|
* [Square Root](https://github.com/TheAlgorithms/Ruby/blob/master/maths/square_root.rb)
|
2021-01-09 20:10:44 +01:00
|
|
|
* [Square Root Test](https://github.com/TheAlgorithms/Ruby/blob/master/maths/square_root_test.rb)
|
2021-01-24 00:21:01 +01:00
|
|
|
* [Sum Of Digits](https://github.com/TheAlgorithms/Ruby/blob/master/maths/sum_of_digits.rb)
|
2021-01-05 23:29:01 +01:00
|
|
|
|
2020-04-16 16:26:19 +02:00
|
|
|
## Other
|
|
|
|
* [Fisher Yates](https://github.com/TheAlgorithms/Ruby/blob/master/other/fisher_yates.rb)
|
2021-08-22 23:21:22 +02:00
|
|
|
* [Number Of Days](https://github.com/TheAlgorithms/Ruby/blob/master/other/number_of_days.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
|
|
|
|
## Project Euler
|
2022-11-02 05:54:32 +01:00
|
|
|
* Problem 001
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_001/sol1.rb)
|
|
|
|
* Problem 002
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_002/sol1.rb)
|
|
|
|
* Problem 003
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_003/sol1.rb)
|
|
|
|
* [Sol2](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_003/sol2.rb)
|
|
|
|
* Problem 004
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_004/sol1.rb)
|
|
|
|
* [Sol2](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_004/sol2.rb)
|
|
|
|
* Problem 005
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_005/sol1.rb)
|
2023-02-23 00:40:36 +01:00
|
|
|
* Problem 006
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_006/sol1.rb)
|
2023-02-23 16:08:18 +01:00
|
|
|
* Problem 007
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_007/sol1.rb)
|
2023-02-23 16:09:51 +01:00
|
|
|
* Problem 010
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_010/sol1.rb)
|
2023-02-24 00:09:21 +01:00
|
|
|
* Problem 014
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_014/sol1.rb)
|
2022-11-02 05:54:32 +01:00
|
|
|
* Problem 020
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_020/sol1.rb)
|
|
|
|
* Problem 021
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_021/sol1.rb)
|
|
|
|
* Problem 022
|
|
|
|
* [Sol1](https://github.com/TheAlgorithms/Ruby/blob/master/project_euler/problem_022/sol1.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
|
|
|
|
## Searches
|
2021-04-12 00:56:29 +02:00
|
|
|
* [Binary Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/binary_search.rb)
|
|
|
|
* [Depth First Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/depth_first_search.rb)
|
|
|
|
* [Double Linear Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/double_linear_search.rb)
|
2021-11-14 23:37:37 +01:00
|
|
|
* [Fibonacci Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/fibonacci_search.rb)
|
2021-04-12 00:56:29 +02:00
|
|
|
* [Jump Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/jump_search.rb)
|
|
|
|
* [Linear Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/linear_search.rb)
|
2021-08-25 21:35:05 +02:00
|
|
|
* [Number Of Islands](https://github.com/TheAlgorithms/Ruby/blob/master/searches/number_of_islands.rb)
|
2021-04-12 00:56:29 +02:00
|
|
|
* [Recursive Double Linear Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/recursive_double_linear_search.rb)
|
|
|
|
* [Recursive Linear Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/recursive_linear_search.rb)
|
|
|
|
* [Ternary Search](https://github.com/TheAlgorithms/Ruby/blob/master/searches/ternary_search.rb)
|
2020-04-16 16:26:19 +02:00
|
|
|
|
|
|
|
## Sorting
|
2021-05-06 09:13:25 +02:00
|
|
|
* [Bead Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bead_sort.rb)
|
|
|
|
* [Bead Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bead_sort_test.rb)
|
2022-12-08 16:44:02 +01:00
|
|
|
* [Binary Insertion Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/binary_insertion_sort.rb)
|
|
|
|
* [Binary Insertion Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/binary_insertion_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Bogo Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bogo_sort.rb)
|
2020-12-29 00:02:08 +01:00
|
|
|
* [Bogo Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bogo_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Bubble Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bubble_sort.rb)
|
2021-02-13 17:25:47 +01:00
|
|
|
* [Bubble Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bubble_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Bucket Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bucket_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Bucket Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/bucket_sort_test.rb)
|
2021-05-06 09:13:25 +02:00
|
|
|
* [Cocktail Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/cocktail_sort.rb)
|
|
|
|
* [Cocktail Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/cocktail_sort_test.rb)
|
|
|
|
* [Comb Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/comb_sort.rb)
|
|
|
|
* [Comb Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/comb_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Heap Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/heap_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Heap Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/heap_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Insertion Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/insertion_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Insertion Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/insertion_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Merge Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/merge_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Merge Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/merge_sort_test.rb)
|
2021-05-06 09:13:25 +02:00
|
|
|
* [Pancake Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/pancake_sort.rb)
|
|
|
|
* [Pancake Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/pancake_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Quicksort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/quicksort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Quicksort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/quicksort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Radix Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/radix_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Radix Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/radix_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Selection Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/selection_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Selection Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/selection_sort_test.rb)
|
2020-11-03 11:06:22 +01:00
|
|
|
* [Shell Sort](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/shell_sort.rb)
|
2021-02-27 20:57:25 +01:00
|
|
|
* [Shell Sort Test](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/shell_sort_test.rb)
|
2021-04-25 08:19:56 +02:00
|
|
|
* [Sort Color](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/sort_color.rb)
|
2021-02-13 17:25:47 +01:00
|
|
|
* [Sort Tests](https://github.com/TheAlgorithms/Ruby/blob/master/sorting/sort_tests.rb)
|
2023-02-10 04:55:53 +01:00
|
|
|
|
|
|
|
## Strings
|
|
|
|
* [Max K Most Frequent Words](https://github.com/TheAlgorithms/Ruby/blob/master/strings/max_k_most_frequent_words.rb)
|
|
|
|
* [Max K Most Frequent Words Test](https://github.com/TheAlgorithms/Ruby/blob/master/strings/max_k_most_frequent_words_test.rb)
|