Rachael Smith Rachael Smith

Day 3 Challenge

Day 3 Challenge of 365 Days of Coding: Today we are going to dive into simple ciphers with a Caesar cipher more specifically ROT13. Create a function that takes a string and returns the string with each letter substituted with the 13th letter after it in the alphabet (ROT13). If there are numbers or special characters included in the string, they should be returned as they are.

Read More
Rachael Smith Rachael Smith

Flatten and Sort an Array of Arrays JavaScript

How to flatten, filter, and sort and array in JavaScript. The solution for a popular interview question flatten an array taken one step further to make it an array with only the unique values and have it sorted in numerical order.

Read More