Merge branch 'master' of ssh://gitea.calebfontenot.com:25566/CCF_100/NoMoreAcronyms

master
Chloe Fontenot 🏳️‍⚧️ 2023-04-04 21:14:20 +07:00
commit 74570ba957
1 changed files with 2 additions and 2 deletions

@ -99,7 +99,7 @@ function design3(input) {
if (i == 0 || (j == 0 || j == (i - 1))) { // Check if we're at the beginning or end of the line
outputString += "*";
} else {
outputString += " ";
outputString += " ";
}
}
}
@ -114,7 +114,7 @@ function design3(input) {
if ((i == 0 || (j == 0 || j == (i - 1)))) { // Check if we're at the beginning or end of the line
outputString += "*";
} else {
outputString += " ";
outputString += " ";
}
}
}