Skip to content

Commit fb21a75

Browse files
authored
updating links
1 parent 4e2c35c commit fb21a75

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ruby/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,22 @@ From Wikipedia:
77

88
In cryptography, a Caesar cipher, also known as Caesar’s cipher, the shift cipher, Caesar’s code or Caesar shift, is one of the simplest and most widely known encryption techniques. It is a type of substitution cipher in which each letter in the plaintext is replaced by a letter some fixed number of positions down the alphabet. For example, with a left shift of 3, D would be replaced by A, E would become B, and so on. The method is named after Julius Caesar, who used it in his private correspondence.
99

10-
Code: https://github.com/michpara/Web-Development/tree/master/Ruby/caesar_cipher
10+
Code: https://github.com/michpara/web-development/tree/master/ruby/caesar_cipher
1111

1212
## **Sub Strings**
1313

1414
Implement a method #substrings that takes a word as the first argument and then an array of valid substrings (your dictionary) as the second argument. It should return a hash listing each substring (case insensitive) that was found in the original string and how many times it was found.
1515

16-
Code: https://github.com/michpara/Web-Development/tree/master/Ruby/substrings
16+
Code: https://github.com/michpara/web-development/tree/master/ruby/substrings
1717

1818
## **Stock Picker**
1919

2020
Implement a method #stock_picker that takes in an array of stock prices, one for each hypothetical day. It should return a pair of days representing the best day to buy and the best day to sell. Days start at 0
2121

22-
Code: https://github.com/michpara/Web-Development/tree/master/Ruby/stockpicker
22+
Code: https://github.com/michpara/web-development/tree/master/ruby/stockpicker
2323

2424
## **Bubble Sort**
2525

2626
One of the simpler (but more processor-intensive) ways of sorting a group of items in an array is bubble sort, where each element is compared to the one next to it and they are swapped if the one on the left is larger than the one on the right. This continues until the array is eventually sorted.
2727

28-
Code: https://github.com/michpara/Web-Development/tree/master/Ruby/bubblesort
28+
Code: https://github.com/michpara/web-development/tree/master/ruby/bubblesort

0 commit comments

Comments
 (0)