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
- Host: GitHub
- URL: https://github.com/vbetsch/code-cracker
- Owner: vbetsch
- Created: 2026-04-09T15:28:54.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2026-04-09T17:21:27.000Z (3 months ago)
- Last Synced: 2026-04-09T17:31:06.705Z (3 months ago)
- Topics: lib-config-ts
- Language: JavaScript
- Homepage: https://codingdojo.org/kata/CodeCracker/
- Size: 115 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Code Cracker
[](https://github.com/vbetsch/code-cracker/actions?query=workflow%3Alint++)
[](https://github.com/vbetsch/code-cracker/actions?query=workflow%3Atests++)
[](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