String Manipulation InterpreterString manipulationadd commas to Numbers without String manipulationPi language interpreterBrainFlow Interpreter!Interpret /// (pronounced 'slashes')Code Golf: Gibberish EchoInterpreted InterpreterRemove more than n consecutive vowels from input stringMake a Unicorn interpreterShortest Unique Substring
Test if tikzmark exists on same page
Why doesn't H₄O²⁺ exist?
Why are 150k or 200k jobs considered good when there are 300k+ births a month?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
"to be prejudice towards/against someone" vs "to be prejudiced against/towards someone"
Is a conference paper whose proceedings will be published in IEEE Xplore counted as a publication?
Dragon forelimb placement
Is it unprofessional to ask if a job posting on GlassDoor is real?
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
What's the output of a record cartridge playing an out-of-speed record
can i play a electric guitar through a bass amp?
Either or Neither in sentence with another negative
Prove that NP is closed under karp reduction?
To string or not to string
Font hinting is lost in Chrome-like browsers (for some languages )
Arthur Somervell: 1000 Exercises - Meaning of this notation
Characters won't fit in table
Is a tag line useful on a cover?
How to find program name(s) of an installed package?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Why was the small council so happy for Tyrion to become the Master of Coin?
Do VLANs within a subnet need to have their own subnet for router on a stick?
Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.
Minkowski space
String Manipulation Interpreter
String manipulationadd commas to Numbers without String manipulationPi language interpreterBrainFlow Interpreter!Interpret /// (pronounced 'slashes')Code Golf: Gibberish EchoInterpreted InterpreterRemove more than n consecutive vowels from input stringMake a Unicorn interpreterShortest Unique Substring
$begingroup$
Summary
A new string manipulation language has been made, using only the characters $+#-!*|@>
! Your task is to implement an interpreter for it in as few bytes as possible.
Input
A string, which is a line of this language. This can be taken in any reasonable way (stdin, function parameter, command line argument etc.), or as a predefined variable. If the program asks for user input, accept all user input it asks for from stdin and nothing more, see below. You may assume it is a valid program.
Output
Whatever the language would output, specifications below. You must output a string, in any reasonable way (stdout, function output, etc.), or a variable value. When the language outputs explicitly, this must go to stdout. Standard loopholes are banned.
Language Specifications
Processing and Syntax
The language has a very simple form of processing as it does only string manipulation: it starts with an empty string (""
), and changes it with each term. A term is made up of one or two parts: a function (below) followed by possibly a parameter(below), which edits its behaviour. Terms are separated by pipes (|
). You may assume it will not be an empty program, and no term will be empty. You should output the value at the end of the program.
Functions
The language has just 6 functions, as shown below. Each function either accepts one or zero parameters.
+
concatenate strings (takes one string parameter, concatenates it to the current value)!
reverse the character order of the current value (no parameter)*
repeat the string (takes one integer parameter, repeats the current value that many times)-
removes all occurrences of a value (takes one string parameter, removes all occurrences of it from the current value)$
[pseudo-]randomly shuffles the current value (no parameter)<
output the current value tostdout
(no parameters)
Values
These are the values that may be passed to functions, represented by regex that would match them:
@[^|]*
a string literal, including any character other than pipes. It may be empty.#[0-9]+
an integer literal>
the next line ofstdin
. If used with*
, convert to integer.
Test Cases
╔════════════════════════╤═════════════╤══════════════╗
║code │input │output ║
╟────────────────────────┼─────────────┼──────────────╢
║+>|!|+@hello|*> │13 │ ║
║ │2 │31hello31hello║
╟────────────────────────┼─────────────┼──────────────╢
║+>|+@abcdefg|$ │hello │hcloeebafdlg ║
╟────────────────────────┼─────────────┼──────────────╢
║+@how areyou|-@o|-> │w │h areyu ║
╟────────────────────────┼─────────────┼──────────────╢
║+@out|<|*#3 │ │out ║
║ │ │outoutout ║
╟────────────────────────┼─────────────┼──────────────╢
║+> │what ever 345│what ever 345 ║
╟────────────────────────┼─────────────┼──────────────╢
║+@$pe<i@l|<|-@$pe<i@l|+>│A|$o $pe<!@| │$pe<i@l ║
║ │ │A|$o $pe<!@| ║
╚════════════════════════╧═════════════╧══════════════╝
Note that test case 2 is random, so any permutation of the characters in it is valid. Also, the outputs in the table are seperated by newlines, but your program doesn't have to do the same. The last value in each case the the final output.
Example (Un-golfed) python interpreter
Try it online! IMO better if you run it through IDLE or whatever you use. (I golfed it down to 424 bytes after, but I'm sure you lot can do better).
code-golf string interpreter
$endgroup$
|
show 2 more comments
$begingroup$
Summary
A new string manipulation language has been made, using only the characters $+#-!*|@>
! Your task is to implement an interpreter for it in as few bytes as possible.
Input
A string, which is a line of this language. This can be taken in any reasonable way (stdin, function parameter, command line argument etc.), or as a predefined variable. If the program asks for user input, accept all user input it asks for from stdin and nothing more, see below. You may assume it is a valid program.
Output
Whatever the language would output, specifications below. You must output a string, in any reasonable way (stdout, function output, etc.), or a variable value. When the language outputs explicitly, this must go to stdout. Standard loopholes are banned.
Language Specifications
Processing and Syntax
The language has a very simple form of processing as it does only string manipulation: it starts with an empty string (""
), and changes it with each term. A term is made up of one or two parts: a function (below) followed by possibly a parameter(below), which edits its behaviour. Terms are separated by pipes (|
). You may assume it will not be an empty program, and no term will be empty. You should output the value at the end of the program.
Functions
The language has just 6 functions, as shown below. Each function either accepts one or zero parameters.
+
concatenate strings (takes one string parameter, concatenates it to the current value)!
reverse the character order of the current value (no parameter)*
repeat the string (takes one integer parameter, repeats the current value that many times)-
removes all occurrences of a value (takes one string parameter, removes all occurrences of it from the current value)$
[pseudo-]randomly shuffles the current value (no parameter)<
output the current value tostdout
(no parameters)
Values
These are the values that may be passed to functions, represented by regex that would match them:
@[^|]*
a string literal, including any character other than pipes. It may be empty.#[0-9]+
an integer literal>
the next line ofstdin
. If used with*
, convert to integer.
Test Cases
╔════════════════════════╤═════════════╤══════════════╗
║code │input │output ║
╟────────────────────────┼─────────────┼──────────────╢
║+>|!|+@hello|*> │13 │ ║
║ │2 │31hello31hello║
╟────────────────────────┼─────────────┼──────────────╢
║+>|+@abcdefg|$ │hello │hcloeebafdlg ║
╟────────────────────────┼─────────────┼──────────────╢
║+@how areyou|-@o|-> │w │h areyu ║
╟────────────────────────┼─────────────┼──────────────╢
║+@out|<|*#3 │ │out ║
║ │ │outoutout ║
╟────────────────────────┼─────────────┼──────────────╢
║+> │what ever 345│what ever 345 ║
╟────────────────────────┼─────────────┼──────────────╢
║+@$pe<i@l|<|-@$pe<i@l|+>│A|$o $pe<!@| │$pe<i@l ║
║ │ │A|$o $pe<!@| ║
╚════════════════════════╧═════════════╧══════════════╝
Note that test case 2 is random, so any permutation of the characters in it is valid. Also, the outputs in the table are seperated by newlines, but your program doesn't have to do the same. The last value in each case the the final output.
Example (Un-golfed) python interpreter
Try it online! IMO better if you run it through IDLE or whatever you use. (I golfed it down to 424 bytes after, but I'm sure you lot can do better).
code-golf string interpreter
$endgroup$
1
$begingroup$
Allowing input to already be in a variable is non-standard, as is allowing output to be in one.
$endgroup$
– Jonathan Allan
3 hours ago
$begingroup$
Are we allowed to take in a generator function instead of an array/list for the input?
$endgroup$
– Embodiment of Ignorance
3 hours ago
$begingroup$
Also, for<
, if our answer is a function that returns a value, should I print in the middle of the function and return the final string?
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@EmbodimentofIgnorance RE - Generator: No, it was and is stated in my question that it is the next line of stdin. RE -<
: I have clarified in my question that it must print to stdout, except the final value.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@JonathanAllan Question clarified.
$endgroup$
– Artemis Fowl
2 hours ago
|
show 2 more comments
$begingroup$
Summary
A new string manipulation language has been made, using only the characters $+#-!*|@>
! Your task is to implement an interpreter for it in as few bytes as possible.
Input
A string, which is a line of this language. This can be taken in any reasonable way (stdin, function parameter, command line argument etc.), or as a predefined variable. If the program asks for user input, accept all user input it asks for from stdin and nothing more, see below. You may assume it is a valid program.
Output
Whatever the language would output, specifications below. You must output a string, in any reasonable way (stdout, function output, etc.), or a variable value. When the language outputs explicitly, this must go to stdout. Standard loopholes are banned.
Language Specifications
Processing and Syntax
The language has a very simple form of processing as it does only string manipulation: it starts with an empty string (""
), and changes it with each term. A term is made up of one or two parts: a function (below) followed by possibly a parameter(below), which edits its behaviour. Terms are separated by pipes (|
). You may assume it will not be an empty program, and no term will be empty. You should output the value at the end of the program.
Functions
The language has just 6 functions, as shown below. Each function either accepts one or zero parameters.
+
concatenate strings (takes one string parameter, concatenates it to the current value)!
reverse the character order of the current value (no parameter)*
repeat the string (takes one integer parameter, repeats the current value that many times)-
removes all occurrences of a value (takes one string parameter, removes all occurrences of it from the current value)$
[pseudo-]randomly shuffles the current value (no parameter)<
output the current value tostdout
(no parameters)
Values
These are the values that may be passed to functions, represented by regex that would match them:
@[^|]*
a string literal, including any character other than pipes. It may be empty.#[0-9]+
an integer literal>
the next line ofstdin
. If used with*
, convert to integer.
Test Cases
╔════════════════════════╤═════════════╤══════════════╗
║code │input │output ║
╟────────────────────────┼─────────────┼──────────────╢
║+>|!|+@hello|*> │13 │ ║
║ │2 │31hello31hello║
╟────────────────────────┼─────────────┼──────────────╢
║+>|+@abcdefg|$ │hello │hcloeebafdlg ║
╟────────────────────────┼─────────────┼──────────────╢
║+@how areyou|-@o|-> │w │h areyu ║
╟────────────────────────┼─────────────┼──────────────╢
║+@out|<|*#3 │ │out ║
║ │ │outoutout ║
╟────────────────────────┼─────────────┼──────────────╢
║+> │what ever 345│what ever 345 ║
╟────────────────────────┼─────────────┼──────────────╢
║+@$pe<i@l|<|-@$pe<i@l|+>│A|$o $pe<!@| │$pe<i@l ║
║ │ │A|$o $pe<!@| ║
╚════════════════════════╧═════════════╧══════════════╝
Note that test case 2 is random, so any permutation of the characters in it is valid. Also, the outputs in the table are seperated by newlines, but your program doesn't have to do the same. The last value in each case the the final output.
Example (Un-golfed) python interpreter
Try it online! IMO better if you run it through IDLE or whatever you use. (I golfed it down to 424 bytes after, but I'm sure you lot can do better).
code-golf string interpreter
$endgroup$
Summary
A new string manipulation language has been made, using only the characters $+#-!*|@>
! Your task is to implement an interpreter for it in as few bytes as possible.
Input
A string, which is a line of this language. This can be taken in any reasonable way (stdin, function parameter, command line argument etc.), or as a predefined variable. If the program asks for user input, accept all user input it asks for from stdin and nothing more, see below. You may assume it is a valid program.
Output
Whatever the language would output, specifications below. You must output a string, in any reasonable way (stdout, function output, etc.), or a variable value. When the language outputs explicitly, this must go to stdout. Standard loopholes are banned.
Language Specifications
Processing and Syntax
The language has a very simple form of processing as it does only string manipulation: it starts with an empty string (""
), and changes it with each term. A term is made up of one or two parts: a function (below) followed by possibly a parameter(below), which edits its behaviour. Terms are separated by pipes (|
). You may assume it will not be an empty program, and no term will be empty. You should output the value at the end of the program.
Functions
The language has just 6 functions, as shown below. Each function either accepts one or zero parameters.
+
concatenate strings (takes one string parameter, concatenates it to the current value)!
reverse the character order of the current value (no parameter)*
repeat the string (takes one integer parameter, repeats the current value that many times)-
removes all occurrences of a value (takes one string parameter, removes all occurrences of it from the current value)$
[pseudo-]randomly shuffles the current value (no parameter)<
output the current value tostdout
(no parameters)
Values
These are the values that may be passed to functions, represented by regex that would match them:
@[^|]*
a string literal, including any character other than pipes. It may be empty.#[0-9]+
an integer literal>
the next line ofstdin
. If used with*
, convert to integer.
Test Cases
╔════════════════════════╤═════════════╤══════════════╗
║code │input │output ║
╟────────────────────────┼─────────────┼──────────────╢
║+>|!|+@hello|*> │13 │ ║
║ │2 │31hello31hello║
╟────────────────────────┼─────────────┼──────────────╢
║+>|+@abcdefg|$ │hello │hcloeebafdlg ║
╟────────────────────────┼─────────────┼──────────────╢
║+@how areyou|-@o|-> │w │h areyu ║
╟────────────────────────┼─────────────┼──────────────╢
║+@out|<|*#3 │ │out ║
║ │ │outoutout ║
╟────────────────────────┼─────────────┼──────────────╢
║+> │what ever 345│what ever 345 ║
╟────────────────────────┼─────────────┼──────────────╢
║+@$pe<i@l|<|-@$pe<i@l|+>│A|$o $pe<!@| │$pe<i@l ║
║ │ │A|$o $pe<!@| ║
╚════════════════════════╧═════════════╧══════════════╝
Note that test case 2 is random, so any permutation of the characters in it is valid. Also, the outputs in the table are seperated by newlines, but your program doesn't have to do the same. The last value in each case the the final output.
Example (Un-golfed) python interpreter
Try it online! IMO better if you run it through IDLE or whatever you use. (I golfed it down to 424 bytes after, but I'm sure you lot can do better).
code-golf string interpreter
code-golf string interpreter
edited 2 hours ago
Artemis Fowl
asked 5 hours ago
Artemis FowlArtemis Fowl
2119
2119
1
$begingroup$
Allowing input to already be in a variable is non-standard, as is allowing output to be in one.
$endgroup$
– Jonathan Allan
3 hours ago
$begingroup$
Are we allowed to take in a generator function instead of an array/list for the input?
$endgroup$
– Embodiment of Ignorance
3 hours ago
$begingroup$
Also, for<
, if our answer is a function that returns a value, should I print in the middle of the function and return the final string?
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@EmbodimentofIgnorance RE - Generator: No, it was and is stated in my question that it is the next line of stdin. RE -<
: I have clarified in my question that it must print to stdout, except the final value.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@JonathanAllan Question clarified.
$endgroup$
– Artemis Fowl
2 hours ago
|
show 2 more comments
1
$begingroup$
Allowing input to already be in a variable is non-standard, as is allowing output to be in one.
$endgroup$
– Jonathan Allan
3 hours ago
$begingroup$
Are we allowed to take in a generator function instead of an array/list for the input?
$endgroup$
– Embodiment of Ignorance
3 hours ago
$begingroup$
Also, for<
, if our answer is a function that returns a value, should I print in the middle of the function and return the final string?
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@EmbodimentofIgnorance RE - Generator: No, it was and is stated in my question that it is the next line of stdin. RE -<
: I have clarified in my question that it must print to stdout, except the final value.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@JonathanAllan Question clarified.
$endgroup$
– Artemis Fowl
2 hours ago
1
1
$begingroup$
Allowing input to already be in a variable is non-standard, as is allowing output to be in one.
$endgroup$
– Jonathan Allan
3 hours ago
$begingroup$
Allowing input to already be in a variable is non-standard, as is allowing output to be in one.
$endgroup$
– Jonathan Allan
3 hours ago
$begingroup$
Are we allowed to take in a generator function instead of an array/list for the input?
$endgroup$
– Embodiment of Ignorance
3 hours ago
$begingroup$
Are we allowed to take in a generator function instead of an array/list for the input?
$endgroup$
– Embodiment of Ignorance
3 hours ago
$begingroup$
Also, for
<
, if our answer is a function that returns a value, should I print in the middle of the function and return the final string?$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
Also, for
<
, if our answer is a function that returns a value, should I print in the middle of the function and return the final string?$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@EmbodimentofIgnorance RE - Generator: No, it was and is stated in my question that it is the next line of stdin. RE -
<
: I have clarified in my question that it must print to stdout, except the final value.$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@EmbodimentofIgnorance RE - Generator: No, it was and is stated in my question that it is the next line of stdin. RE -
<
: I have clarified in my question that it must print to stdout, except the final value.$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@JonathanAllan Question clarified.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@JonathanAllan Question clarified.
$endgroup$
– Artemis Fowl
2 hours ago
|
show 2 more comments
2 Answers
2
active
oldest
votes
$begingroup$
C# (Visual C# Interactive Compiler), 305 bytes
a=>string s="",d,g;foreach(var c in a.Split('
Try it online!
$endgroup$
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
add a comment |
$begingroup$
Python 2, 215 219 bytes
from random import*
I=raw_input;o=''
for t in I().split('|'):p=t[1:]=='>'and I()or t[2:];exec dict(zip("!$<+-*","o=o[::-1];o=''.join(sample(o,len(o)));print o;o+=p;o=o.replace(p,'');o*=int(p)".split(';')))[t[0]]
print o
Try it online!
-4 because raw_input
is required.
$endgroup$
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requiresraw_input
. Correct me if I am wrong..
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
According to Py 2.7 docs:input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.
$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
return StackExchange.using("mathjaxEditing", function ()
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["\$", "\$"]]);
);
);
, "mathjax-editing");
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "200"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f182764%2fstring-manipulation-interpreter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
C# (Visual C# Interactive Compiler), 305 bytes
a=>string s="",d,g;foreach(var c in a.Split('
Try it online!
$endgroup$
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
add a comment |
$begingroup$
C# (Visual C# Interactive Compiler), 305 bytes
a=>string s="",d,g;foreach(var c in a.Split('
Try it online!
$endgroup$
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
add a comment |
$begingroup$
C# (Visual C# Interactive Compiler), 305 bytes
a=>string s="",d,g;foreach(var c in a.Split('
Try it online!
$endgroup$
C# (Visual C# Interactive Compiler), 305 bytes
a=>string s="",d,g;foreach(var c in a.Split('
Try it online!
edited 1 hour ago
answered 2 hours ago
Embodiment of IgnoranceEmbodiment of Ignorance
2,778127
2,778127
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
add a comment |
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
What's that in the TIO input section? Your code seems to operate the same without it... [Utterly new to C#]
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@ArtemisFowl Those were some notes I were writing, forgot to delete. Deleted now
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
As specified by the question (12 mins before your answer was posted), input other than the program should be taken from stdin.
$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@ArtemisFowl Fixed, and saved some bytes
$endgroup$
– Embodiment of Ignorance
2 hours ago
add a comment |
$begingroup$
Python 2, 215 219 bytes
from random import*
I=raw_input;o=''
for t in I().split('|'):p=t[1:]=='>'and I()or t[2:];exec dict(zip("!$<+-*","o=o[::-1];o=''.join(sample(o,len(o)));print o;o+=p;o=o.replace(p,'');o*=int(p)".split(';')))[t[0]]
print o
Try it online!
-4 because raw_input
is required.
$endgroup$
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requiresraw_input
. Correct me if I am wrong..
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
According to Py 2.7 docs:input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.
$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
add a comment |
$begingroup$
Python 2, 215 219 bytes
from random import*
I=raw_input;o=''
for t in I().split('|'):p=t[1:]=='>'and I()or t[2:];exec dict(zip("!$<+-*","o=o[::-1];o=''.join(sample(o,len(o)));print o;o+=p;o=o.replace(p,'');o*=int(p)".split(';')))[t[0]]
print o
Try it online!
-4 because raw_input
is required.
$endgroup$
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requiresraw_input
. Correct me if I am wrong..
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
According to Py 2.7 docs:input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.
$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
add a comment |
$begingroup$
Python 2, 215 219 bytes
from random import*
I=raw_input;o=''
for t in I().split('|'):p=t[1:]=='>'and I()or t[2:];exec dict(zip("!$<+-*","o=o[::-1];o=''.join(sample(o,len(o)));print o;o+=p;o=o.replace(p,'');o*=int(p)".split(';')))[t[0]]
print o
Try it online!
-4 because raw_input
is required.
$endgroup$
Python 2, 215 219 bytes
from random import*
I=raw_input;o=''
for t in I().split('|'):p=t[1:]=='>'and I()or t[2:];exec dict(zip("!$<+-*","o=o[::-1];o=''.join(sample(o,len(o)));print o;o+=p;o=o.replace(p,'');o*=int(p)".split(';')))[t[0]]
print o
Try it online!
-4 because raw_input
is required.
edited 39 mins ago
answered 1 hour ago
Chas BrownChas Brown
5,1591523
5,1591523
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requiresraw_input
. Correct me if I am wrong..
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
According to Py 2.7 docs:input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.
$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
add a comment |
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requiresraw_input
. Correct me if I am wrong..
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
According to Py 2.7 docs:input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.
$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
Input other than the program must be from stdin, as specified in the question.
$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requires
raw_input
. Correct me if I am wrong..$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
I use Python 3, but as far as I was aware, that usage of input requires
raw_input
. Correct me if I am wrong..$endgroup$
– Artemis Fowl
1 hour ago
$begingroup$
According to Py 2.7 docs:
input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
According to Py 2.7 docs:
input([prompt])
Equivalent to eval(raw_input(prompt)). This function does not catch user errors. If the input is not syntactically valid, a SyntaxError will be raised.$endgroup$
– Artemis Fowl
54 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
So, the issue you're raising is something like here, where the input strings would need to be quoted - rather than unquoted as in a 'true' stdin situation. Again, usually the I/O rules are a bit lax; but I will modify.
$endgroup$
– Chas Brown
43 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
$begingroup$
Thanks for changing. You could save a few bytes by changing to Python 3 and using your old code + 3 bytes for brackets, but... +1 anyways
$endgroup$
– Artemis Fowl
40 mins ago
add a comment |
If this is an answer to a challenge…
…Be sure to follow the challenge specification. However, please refrain from exploiting obvious loopholes. Answers abusing any of the standard loopholes are considered invalid. If you think a specification is unclear or underspecified, comment on the question instead.
…Try to optimize your score. For instance, answers to code-golf challenges should attempt to be as short as possible. You can always include a readable version of the code in addition to the competitive one.
Explanations of your answer make it more interesting to read and are very much encouraged.…Include a short header which indicates the language(s) of your code and its score, as defined by the challenge.
More generally…
…Please make sure to answer the question and provide sufficient detail.
…Avoid asking for help, clarification or responding to other answers (use comments instead).
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f182764%2fstring-manipulation-interpreter%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
Allowing input to already be in a variable is non-standard, as is allowing output to be in one.
$endgroup$
– Jonathan Allan
3 hours ago
$begingroup$
Are we allowed to take in a generator function instead of an array/list for the input?
$endgroup$
– Embodiment of Ignorance
3 hours ago
$begingroup$
Also, for
<
, if our answer is a function that returns a value, should I print in the middle of the function and return the final string?$endgroup$
– Embodiment of Ignorance
2 hours ago
$begingroup$
@EmbodimentofIgnorance RE - Generator: No, it was and is stated in my question that it is the next line of stdin. RE -
<
: I have clarified in my question that it must print to stdout, except the final value.$endgroup$
– Artemis Fowl
2 hours ago
$begingroup$
@JonathanAllan Question clarified.
$endgroup$
– Artemis Fowl
2 hours ago