Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync crypto-square #1320

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 16 additions & 18 deletions exercises/practice/crypto-square/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,10 @@ Implement the classic method for composing secret messages called a square code.

Given an English text, output the encoded version of that text.

First, the input is normalized: the spaces and punctuation are removed
from the English text and the message is downcased.
First, the input is normalized: the spaces and punctuation are removed from the English text and the message is down-cased.

Then, the normalized characters are broken into rows. These rows can be
regarded as forming a rectangle when printed with intervening newlines.
Then, the normalized characters are broken into rows.
These rows can be regarded as forming a rectangle when printed with intervening newlines.

For example, the sentence

Expand All @@ -22,13 +21,16 @@ is normalized to:
"ifmanwasmeanttostayonthegroundgodwouldhavegivenusroots"
```

The plaintext should be organized in to a rectangle. The size of the
rectangle (`r x c`) should be decided by the length of the message,
such that `c >= r` and `c - r <= 1`, where `c` is the number of columns
and `r` is the number of rows.
The plaintext should be organized into a rectangle as square as possible.
The size of the rectangle should be decided by the length of the message.

Our normalized text is 54 characters long, dictating a rectangle with
`c = 8` and `r = 7`:
If `c` is the number of columns and `r` is the number of rows, then for the rectangle `r` x `c` find the smallest possible integer `c` such that:

- `r * c >= length of message`,
- and `c >= r`,
- and `c - r <= 1`.

Our normalized text is 54 characters long, dictating a rectangle with `c = 8` and `r = 7`:

```text
"ifmanwas"
Expand All @@ -40,26 +42,22 @@ Our normalized text is 54 characters long, dictating a rectangle with
"sroots "
```

The coded message is obtained by reading down the columns going left to
right.
The coded message is obtained by reading down the columns going left to right.

The message above is coded as:

```text
"imtgdvsfearwermayoogoanouuiontnnlvtwttddesaohghnsseoau"
```

Output the encoded text in chunks that fill perfect rectangles `(r X c)`,
with `c` chunks of `r` length, separated by spaces. For phrases that are
`n` characters short of the perfect rectangle, pad each of the last `n`
chunks with a single trailing space.
Output the encoded text in chunks that fill perfect rectangles `(r X c)`, with `c` chunks of `r` length, separated by spaces.
For phrases that are `n` characters short of the perfect rectangle, pad each of the last `n` chunks with a single trailing space.

```text
"imtgdvs fearwer mayoogo anouuio ntnnlvt wttddes aohghn sseoau "
```

Notice that were we to stack these, we could visually decode the
ciphertext back in to the original message:
Notice that were we to stack these, we could visually decode the ciphertext back in to the original message:

```text
"imtgdvs"
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/crypto-square/.meta/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
},
"blurb": "Implement the classic method for composing secret messages called a square code.",
"source": "J Dalbey's Programming Practice problems",
"source_url": "http://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
"source_url": "https://users.csc.calpoly.edu/~jdalbey/103/Projects/ProgrammingPractice.html"
}
55 changes: 21 additions & 34 deletions exercises/practice/crypto-square/.meta/proof.ci.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,53 +11,40 @@ export class Crypto {
return ''
}

const splitRegex = new RegExp(`.{1,${chunkSize}}`, 'g')
return this.ciphertextSegments()
.join('')
.match(splitRegex)
.map((item) => item.padEnd(chunkSize, ' '))
.join(' ')
return this.ciphertextSegments().join(' ')
}

public get size(): number {
const realLength = Math.sqrt(this.plaintext.length)
return Math.ceil(realLength)
return Math.trunc(Math.ceil(realLength))
}

private ciphertextSegments(): string[] {
const textSegments = this.plaintextSegments()
const columns: string[][] = []
let i: number
let j: number
let currentSegment: RegExpMatchArray[number]
let currentLetter: RegExpMatchArray[number][number]

for (i = 0; i < this.size; i += 1) {
columns.push([])
}

for (i = 0; i < textSegments.length; i += 1) {
currentSegment = textSegments[i]

for (j = 0; j < currentSegment.length; j += 1) {
currentLetter = currentSegment[j]
columns[j].push(currentLetter)
}
}

const result: string[] = []
for (i = 0; i < columns.length; i += 1) {
result[i] = columns[i].join('')
const textSegments = this.plaintextSegments().map((s) => s.split(''))
if (textSegments === []) {
return []
} else {
return textSegments[0].map((_firstTextSegmentLetter, i) =>
textSegments.map((_textSegment, j) => textSegments[j][i]).join('')
)
}

return result
}

private plaintextSegments(): RegExpMatchArray {
private plaintextSegments(): string[] {
const plainText = this.plaintext
const chunkSize = this.size

const splitRegex = new RegExp(`.{1,${chunkSize}}`, 'g')
return plainText.match(splitRegex)
const matches = plainText.match(splitRegex)

if (!matches) {
return []
}

if (matches[matches.length - 1].length < this.size) {
matches[matches.length - 1] += ' '.repeat(this.size - matches.length + 1)
}

return matches
}
}
16 changes: 13 additions & 3 deletions exercises/practice/crypto-square/.meta/tests.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# This is an auto-generated file. Regular comments will be removed when this
# file is regenerated. Regenerating will not touch any manually added keys,
# so comments can be added in a "comment" key.
# This is an auto-generated file.
#
# Regenerating this file via `configlet sync` will:
# - Recreate every `description` key/value pair
# - Recreate every `reimplements` key/value pair, where they exist in problem-specifications
# - Remove any `include = true` key/value pair (an omitted `include` key implies inclusion)
# - Preserve any other key/value pair
#
# As user-added comments (using the # character) will be removed when this file
# is regenerated, comments can be added via a `comment` key.

[407c3837-9aa7-4111-ab63-ec54b58e8e9f]
description = "empty plaintext results in an empty ciphertext"

[aad04a25-b8bb-4304-888b-581bea8e0040]
description = "normalization results in empty plaintext"

[64131d65-6fd9-4f58-bdd8-4a2370fb481d]
description = "Lowercase"

Expand Down
13 changes: 9 additions & 4 deletions exercises/practice/crypto-square/crypto-square.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,22 @@ describe('Crypto', () => {
expect(crypto.ciphertext).toEqual('')
})

it('Lowercase', () => {
xit('normalization results in empty plaintext', () => {
const crypto = new Crypto('... --- ...')
expect(crypto.ciphertext).toEqual('')
})

xit('Lowercase', () => {
const crypto = new Crypto('A')
expect(crypto.ciphertext).toEqual('a')
})

it('Remove spaces', () => {
xit('Remove spaces', () => {
const crypto = new Crypto(' b ')
expect(crypto.ciphertext).toEqual('b')
})

it('Remove punctuation', () => {
xit('Remove punctuation', () => {
const crypto = new Crypto('@1,%!')
expect(crypto.ciphertext).toEqual('1')
})
Expand All @@ -31,7 +36,7 @@ describe('Crypto', () => {
expect(crypto.ciphertext).toEqual('clu hlt io ')
})

it.skip('54 character plaintext results in 7 chunks, the last two with trailing spaces', () => {
xit('54 character plaintext results in 7 chunks, the last two with trailing spaces', () => {
const crypto = new Crypto(
'If man was meant to stay on the ground, god would have given us roots.'
)
Expand Down