An open API service indexing awesome lists of open source software.

https://github.com/vbetsch/code-cracker

🧨 Kata from CodingDojo
https://github.com/vbetsch/code-cracker

lib-config-ts

Last synced: 2 months ago
JSON representation

🧨 Kata from CodingDojo

Awesome Lists containing this project

README

          

# Code Cracker

[![lint](https://github.com/vbetsch/code-cracker/workflows/lint/badge.svg)](https://github.com/vbetsch/code-cracker/actions?query=workflow%3Alint++)
[![tests](https://github.com/vbetsch/code-cracker/workflows/tests/badge.svg)](https://github.com/vbetsch/code-cracker/actions?query=workflow%3Atests++)
[![build](https://github.com/vbetsch/code-cracker/workflows/build/badge.svg)](https://github.com/vbetsch/code-cracker/actions?query=workflow%3Abuild++)

> This repository was created using
> the [lib-config-ts-test](https://github.com/vbetsch/lib-config-ts-test) template

## Problem Description

Given an alphabet decryption key like the one below, create a program that can crack any message
using the decryption key.

### Alphabet

```text
a b c d e f g h i j k l m n o p q r s t u v w x y z
```

### Decryption Key

```text
! ) " ( £ * % & > < @ a b c d e f g h i j k l m n o
```

You could also create a encryption program that will encrypt any message you give it using the key.

> Extract from https://codingdojo.org/kata/CodeCracker