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

This commit is contained in:
2023-04-04 21:14:20 -05:00

View File

@@ -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 += " ";
}
}
}