Alice , 16 Bytes
//; 'q<)e
o!@i -
Probieren Sie es online!
Erläuterung
Ein halbwegs anständiges Layout dafür zu finden, war ziemlich schwierig. Ich bin immer noch nicht sehr zufrieden damit, wegen der Räume, der <
und der ;
, aber das ist das Beste, was ich im Moment tun kann.
Die Zeichenfolgenlänge ist eine der sehr gebräuchlichen Funktionen, die in Alice nicht vorhanden sind, da es sich bei der Eingabe um eine Zeichenfolge und bei der Ausgabe um eine Ganzzahl handelt (und alle Alice-Befehle sind ausschließlich Ganzzahlen für Ganzzahlen oder Zeichenfolgen für Zeichenfolgen). Wir können die Länge einer Zeichenkette messen, indem wir sie im Ordinal-Modus auf das Band schreiben und dann im Cardinal-Modus ihr Ende finden.
/ Reflect to SE. Switch to Ordinal. While in Ordinal mode, the IP will bounce
diagonally up and down through the code.
! Store an implicit empty string on the tape, does nothing.
; Discard an implicit empty string, does nothing.
i Read all input as a string.
'- Push "-".
< Set the horizontal component of the IP's direction to west, so we're bouncing
back now.
- Remove substring. This deletes the minus sign if it exists.
'i Push "i".
; Discard it again.
! Store the input, minus a potential minus sign, on the tape.
/ Reflect to W. Switch to Cardinal. The IP immediately wraps to the
last column.
e) Search the tape to the right for a -1, which will be found at the end
of the string we stored there.
< Does nothing.
q Push the tape head's position, which is equal to the string length.
'<sp> Push " ".
; Discard it again.
/ Reflect to NW. Switch to Ordinal. The IP immediately bounces off
the top boundary to move SW instead.
o Implicitly convert the string length to a string and print it.
IP bounces off the bottom left corner, moves back NE.
/ Reflect to S. Switch to Cardinal.
! Store an implicit 0 on the tape, irrelevant.
The IP wraps back to the first line.
/ Reflect to NE. Switch to Ordinal. The IP immediately bounces off
the top boundary to move SE instead.
@ Terminate the program.
Ich habe auch versucht, das Minuszeichen im Kardinalmodus mit H
(Absolutwert) zu korrigieren, aber der zusätzliche Modusschalter war bei meinen Versuchen immer teurer.