Skip to content

Commit cda9e0a

Browse files
committed
d
1 parent a3efdd8 commit cda9e0a

5 files changed

Lines changed: 2393 additions & 4 deletions

File tree

pages/children/caesar/moduleCaesarCypher.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ export function caesarCypher(offset: number, text: string): string {
1111
index = index + offset;
1212
if (index > alphaLength - 1) {
1313
index = index % alphaLength;
14+
1415
}
1516
if (index < 0) {
1617
index = index % alphaLength;
File renamed without changes.

0 commit comments

Comments
 (0)