Code Monkey home page Code Monkey logo

project-decoder-ring's Introduction

Project: Decoder Ring

You're planning a surprise birthday party for one of your friends who loves escape rooms and puzzles. What better way to practice your new coding skills than to build an application that will help you encode and decode all kinds of fun messages?

Home view of Decoder Ring

This project is designed to test your ability to build complex algorithms as well as write unit tests with Mocha & Chai to test your algorithms. Before taking on this module, you should be comfortable with the learning objectives listed below. You will not need to make any edits to HTML or CSS for this project.

Learning Objectives

This project will assess the following key learning objectives:

  • Write a series of unit tests using Mocha & Chai.
  • Use different expect() methods to test your code.

Project setup

Follow the instructions below to get this project up and running on your own machine:

  • Fork and clone this repository.
  • Run npm install to install the dependencies needed for this project.

To run the tests, you can run the following command:

npm test

To watch how the code you write affects the application website, you can run the following command, which will start a server and take over your terminal window:

npm start

To stop the server and regain control of your terminal, you can press Ctrl + C.

Instructions

You are tasked with building functions for an application that will either encode or decode a string using a variety of ciphers. For each cipher, you should make a series of tests using Mocha & Chai to confirm that your cipher works.

All of the functions can be found inside of the src/ directory, and the corresponding test files can be found in tests/. Each function and cipher is described below.

Below is a checklist of what you need to accomplish.

  • Complete the caesar() function.
  • Write tests for the caesar() function.
  • Complete the polybius() function.
  • Write tests for the polybius() function.
  • Complete the substitution() function.
  • Write tests for the substitution() function.

Caesar Shift

Caesar shift

The Caesar Shift is a type of substitution cipher originally used by Julius Caesar to protect messages of military significance. It relies on taking the alphabet and "shifting" letters to the right or left, based on the typical alphabetic order.

For example, if you were to "shift" the alphabet to the right by 3, the letter "A" would become "D".

"thinkful" -> "wklqnixo"

When decoding the message, you need to know the number the original message was shifted by so that you can shift in the opposite direction.

caesar()

The caesar() function in the src/caesar.js file has three parameters:

  • input is a string that refers to the inputted text to be encoded or decoded.
  • shift is an integer refers to how much each letter is "shifted" by. A positive number means shifting to the right (i.e. "A" becomes "D") whereas a negative number means shifting to the left (i.e. "M" becomes "K").
  • encode is a boolean that refers to whether you should encode or decode the message. By default, it is set to true.

When building the function, keep the following constraints and rules in mind:

  • If the shift value is not present, equal to 0, less than -25, or greater than 25, the function should return false.
  • Spaces in the message should be maintained before and after encoding or decoding, as should other non-alphabetic symbols.
  • Encoding is case-insensitive (e.g., both "a" or "A" would be encoded to the same result).
  • If a letter is shifted so that it goes "off" the alphabet (e.g. a shift of 3 on the letter "z"), it should wrap around to the front of the alphabet (e.g. "z" becomes "c").

Examples

caesar("thinkful", 3); //> 'wklqnixo'
caesar("thinkful", -3); //> 'qefkhcri'
caesar("wklqnixo", 3, false); //> 'thinkful'

caesar("This is a secret message!", 8); //> 'bpqa qa i amkzmb umaaiom!'
caesar("BPQA qa I amkzmb umaaiom!", 8, false); //> 'this is a secret message!'

caesar("thinkful"); //> false
caesar("thinkful", 99); //> false
caesar("thinkful", -26); //> false

Polybius Square

1 2 3 4 5
1 A B C D E
2 F G H I/J K
3 L M N O P
4 Q R S T U
5 V W X Y Z

The Polybius Square is a cipher that is achieved by arranging a typical alphabet into a grid. Each letter is represented through a coordinate. Typically, it is possible to arrange the letters however you like and read off the coordinates in whatever direction you like.

In this example, the grid will be arranged as above and coordinates will be read by comparing the first digit to the number on the top of the table and the second digit to that on the left. For example, in the above table, the letter "B" would be represented by the numerical pair "21".

"thinkful" -> "4432423352125413"

When decoding the message, each pair of numbers is translated using the coordinates.

polybius()

The polybius() function in the src/polybius.js file has two parameters:

  • input is a string that refers to the inputted text to be encoded or decoded.
  • encode is a boolean that refers to whether you should encode or decode the message. By default it is set to true.

When building the function, keep the following constraints and rules in mind:

  • You are welcome to assume that no additional symbols will be included as part of the input. Only spaces and letters will be included.
  • When encoding, your output should still be a string.
  • When decoding, the number of characters in the string excluding spaces should be even. Otherwise, return false.
  • Spaces in the message should be maintained before and after encoding or decoding.
  • Encoding is case-insensitive (e.g., both "a" or "A" would be encoded to the same result).
  • The letters "I" and "J" share a space. When encoding, both letters can be converted to 42, but when decoding, both letters should be shown as "(i/j)".

Examples

polybius("thinkful"); //> "4432423352125413"
polybius("Hello world"); //> '3251131343 2543241341'

polybius("3251131343 2543241341", false); //> "hello world"
polybius("4432423352125413", false); //> "th(i/j)nkful
polybius("44324233521254134", false); //> false

Substitution Cipher

Substitution cipher

The Substitution Cipher requires a standard alphabet and a substitution alphabet. Letters from the standard alphabet will be transposed to the standard alphabet. This cipher requires that the recipient have the substitution alphabet; otherwise, it will be difficult for them to decode the message.

For example, in the image above, the word "HELLO" would be translated as follows:

  • "H" becomes "R".
  • "E" becomes "M".
  • "L" becomes "W".
  • "O" becomes "L".

This would result in the code "RMWWL". To decrypt this code, you would simply take the result and transpose back from the substitution alphabet to the standard alphabet.

substitution()

The substitution() function in the src/substitution.js file has three parameters:

  • input is a string that refers to the inputted text to be encoded or decoded.
  • alphabet is a string that refers to substitution alphabet.
  • encode is a boolean that refers to whether you should encode or decode the message. By default, it is set to true.

When building the function, keep the following constraints and rules in mind:

  • You are welcome to assume that no additional symbols will be included as part of the input. Only spaces and letters will be included.
  • Spaces in the message should be maintained before and after encoding or decoding.
  • Encoding/decoding is case-insensitive (e.g., both "a" or "A" would be encoded to the same result).
  • The alphabet parameter must be a string of exactly 26 characters. Otherwise, it should return false.
  • All of the characters in the alphabet parameter must be unique. Otherwise, it should return false.

Examples

substitution("thinkful", "xoyqmcgrukswaflnthdjpzibev"); //> 'jrufscpw'
substitution("You are an excellent spy", "xoyqmcgrukswaflnthdjpzibev"); //> 'elp xhm xf mbymwwmfj dne'
substitution("jrufscpw", "xoyqmcgrukswaflnthdjpzibev", false); //> 'thinkful'

substitution("thinkful", "short"); //> false
substitution("thinkful", "abcabcabcabcabcabcabcabcyz"); //> false

project-decoder-ring's People

Contributors

bwreid avatar kchia avatar rushcosgrove avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

project-decoder-ring's Issues

Repo name does not match Qualified

What I tried: renaming Github repo folder name to match qualified

Expected Results: Qualified will attach to the folder with the same name

The result I got: Qualified will not attach to the folder with the same name

Suggested fix: Standardize the naming convention so the repo will always match the corresponding qualified module

EDIT:(12/27/20)
Changing the name of this repo will only fix one instance of an incorrectly named folder/file. Please update the repo to reflect the files distributed to students from Qualified. (see below)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.