Zdefiniujemy nieparzysty / parzysty szyfr ASCII za pomocą poniższego pseudokodu:
Define 'neighbor' as the characters adjacent to the current letter in the string
If the one of the neighbors is out of bounds of the string, treat it as \0 or null
Take an input string
For each letter in the string, do
If the 0-based index of the current letter is even, then
Use the binary-or of the ASCII codes of both its neighbors
Else
If the ASCII code of the current letter is odd, then
Use the binary-or of itself plus the left neighbor
Else
Use the binary-or of itself plus the right neighbor
In all cases,
Convert the result back to ASCII and return it
If this would result in a code point 127 or greater to be converted, then
Instead return a space
Join the results of the For loop back into one string and output it
Na przykład dla danych wejściowych Hello
dane wyjściowe są emmol
, ponieważ
- W
H
zakręty na\0 | 'e'
których jeste
e
Okazuje się'e' | 'l'
, albo101 | 108
, co jest109
lubm
- Pierwszy
l
zmienia się również w101 | 108
lubm
- Drugi
l
zamienia się w108 | 111
, czyli111
lubo
o
Okazuje się108 | \0
, lubl
Wejście
- Zdanie złożone wyłącznie z drukowalnych znaków ASCII, w dowolnym odpowiednim formacie .
- W zdaniu mogą znajdować się kropki, spacje i inne znaki interpunkcyjne, ale zawsze będzie to tylko jedna linia.
- Zdanie będzie miało co najmniej trzy znaki.
Wynik
- Powstały szyfr, oparty na regułach opisanych powyżej, zwrócony jako ciąg lub wynik.
Zasady
- Dopuszczalny jest pełny program lub funkcja.
- Standardowe luki są zabronione.
- To jest golf golfowy, więc obowiązują wszystkie zwykłe zasady gry w golfa, a wygrywa najkrótszy kod (w bajtach).
Przykłady
Dane wejściowe w jednym wierszu, dane wyjściowe w następującym. Puste linie oddzielają przykłady.
Hello
emmol
Hello, World!
emmol, ww~ved
PPCG
PSWG
Programming Puzzles and Code Golf
r wogsmmoonpuu ~ meannncoooeggonl
abcdefghijklmnopqrstuvwxyz
bcfefgnijknmno~qrsvuvw~yzz
!abcdefghijklmnopqrstuvwxyz
aaccgeggoikkomoo qsswuww yy
Test 123 with odd characters. R@*SKA0z8d862
euutu133www|todddchizsscguwssr`jS{SK{z~|v66
o
zmiany l
w pierwszym przykładzie, jestem prawie pewien, że twoje specyfikacje zapewniają, że pierwszy o
nie zmieni się l
w drugim przykładzie. Powinien zmienić się na 'l' | ','
, cokolwiek to jest, prawda?
'l' | ','
to 108 | 44 --> 1101111 | 0101100
, co się staje 108
, co jest l
. ,
Dzieje się w kolejce z l
, więc nie ma zmiany, gdy binarnie lub odbywa.