Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
if (charArray[i] == klein[j]){
charArray[i] = klein[(j + code) % klein.length];
break;
}
else if (charArray[i] == gross[j]){
charArray[i] = gross[(j + code) % gross.length];
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment