0"D34çýÇbεDg•Xó•18в@ƶà©i7j0ìëR6ôRíć7®-jšTìJ1®<×ì]ð0:J"D34çýÇbεDg•Xó•18в@ƶà©i7j0ìëR6ôRíć7®-jšTìJ1®<×ì]ð0:J
05AB1E no tiene funciones integradas de conversión UTF-8, así que tengo que hacer todo manualmente .
Pruébelo en línea o verifique que sea una quine .
Explicación:
quine -parte:
La quine más corta para 05AB1E es esta: 0"D34çý"D34çý
( 14 bytes ) proporcionada por @OliverNi . Mi respuesta utiliza una versión modificada de ese quine añadiendo al ...
aquí: 0"D34çý..."D34çý...
. Una breve explicación de esta quine:
0 # Push a 0 to the stack (can be any digit)
"D34çý" # Push the string "D34çý" to the stack
D # Duplicate this string
34ç # Push 34 converted to an ASCII character to the stack: '"'
ý # Join everything on the stack (the 0 and both strings) by '"'
# (output the result implicitly)
Parte del desafío:
Ahora para el desafío parte del código. Como mencioné en la parte superior, 05AB1E no tiene incorporadas conversiones UTF-8, por lo que tengo que hacer estas cosas manualmente. He usado esta fuente como referencia sobre cómo hacer eso: convertir manualmente puntos de código unicode en UTF-8 y UTF-16 . Aquí un breve resumen de eso con respecto a la conversión de caracteres Unicode a UTF-8:
- Convierta los caracteres unicode a sus valores unicode (es decir, se
"dЖ丽"
convierte en [100,1046,20029]
)
- Convierta estos valores unicode a binario (es decir, se
[100,1046,20029]
convierte ["1100100","10000010110","100111000111101"]
)
- Compruebe en cuál de los siguientes rangos están los caracteres:
0x00000000 - 0x0000007F
(0-127): 0xxxxxxx
0x00000080 - 0x000007FF
(128-2047): 110xxxxx 10xxxxxx
0x00000800 - 0x0000FFFF
(2048-65535): 1110xxxx 10xxxxxx 10xxxxxx
0x00010000 - 0x001FFFFF
(65536-2097151): 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
También hay rangos para 5 o 6 bytes, pero dejémoslos fuera por ahora.
El personaje d
estará en el primer rango, por lo que 1 byte en UTF-8; el carácter Ж
está en el segundo rango, entonces 2 bytes en UTF-8; y el carácter 丽
está en el tercer rango, por lo que 3 bytes en UTF-8.
En x
el patrón detrás de él se rellenan los binarios de estos caracteres, de derecha a izquierda. Entonces el d
( 1100100
) con patrón se 0xxxxxxx
convierte en 01100100
; el Ж
( 10000010110
) con patrón se 110xxxxx 10xxxxxx
convierte en 11010000 10010110
; y el 丽
( 100111000111101
) con el patrón 1110xxxx 10xxxxxx 10xxxxxx
se convierte 1110x100 10111000 10111101
, después de lo cual los restantes x
se sustituyen con 0
: 11100100 10111000 10111101
.
Entonces, ese enfoque también lo usé en mi código. x
Sin embargo, en lugar de verificar los rangos reales, solo miro la longitud del binario y lo comparo con la cantidad de patrones, ya que eso ahorra algunos bytes.
Ç # Convert each character in the string to its unicode value
b # Convert each value to binary
ε # Map over these binary strings:
Dg # Duplicate the string, and get its length
•Xó• # Push compressed integer 8657
18в # Converted to Base-18 as list: [1,8,12,17]
@ # Check for each if the length is >= to this value
# (1 if truthy; 0 if falsey)
ƶ # Multiply each by their 1-based index
à # Pop and get its maximum
© # Store it in the register (without popping)
i # If it is exactly 1 (first range):
7j # Add leading spaces to the binary to make it of length 7
0ì # And prepend a "0"
ë # Else (any of the other ranges):
R # Reverse the binary
6ô # Split it into parts of size 6
Rí # Reverse it (and each individual part) back
ć # Pop, and push the remainder and the head separated to the stack
7®- # Calculate 7 minus the value from the register
j # Add leading spaces to the head binary to make it of that length
š # Add it at the start of the remainder-list again
Tì # Prepend "10" before each part
J # Join the list together
1®<× # Repeat "1" the value from the register - 1 amount of times
ì # Prepend that at the front
] # Close both the if-else statement and map
ð0: # Replace all spaces with "0"
J # And join all modified binary strings together
# (which is output implicitly - with trailing newline)
Ver este 05AB1E respuesta mío (secciones cómo comprimir grandes números enteros? Y ¿Cómo listas de números enteros comprimir? ) Para entender por qué •Xó•18в
es [1,8,12,17]
.