Oreoorererereoo
Oreoorererereoo
Given an input string that is similar to the word "oreo", give an ASCII representation of the cookie that is as wide as the input string (to ensure cookie stability).
Rules
- The input is a non-empty string with no whitespace containing any combination of the strings "o" and "re", and containing only those strings.
- The string "o" represents the solid cookie, while the string "re" represents the filling.
- The output must be a stacked cookie that is as wide as the input string.
- The cookie must overlap the filling by one character on each side
- The characters used for the output don't have to match the output below (█ and ░), they just have to be different non-whitespace characters for the two parts of the cookie
- The whitespace padding on each side of the filling is required
- A line return at the end is optional
Examples
Input: oreo
Output:
████
░░
████
Input: o
Output:
█
Input: re
Output: (two spaces)
Input: rere
Output:
░░
░░
Input: oreoorererereoo
Output:
███████████████
░░░░░░░░░░░░░
███████████████
███████████████
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
███████████████
███████████████
Since this is code golf the shortest answer wins, good luck :)
code-golf string ascii-art
|
show 19 more comments
Oreoorererereoo
Given an input string that is similar to the word "oreo", give an ASCII representation of the cookie that is as wide as the input string (to ensure cookie stability).
Rules
- The input is a non-empty string with no whitespace containing any combination of the strings "o" and "re", and containing only those strings.
- The string "o" represents the solid cookie, while the string "re" represents the filling.
- The output must be a stacked cookie that is as wide as the input string.
- The cookie must overlap the filling by one character on each side
- The characters used for the output don't have to match the output below (█ and ░), they just have to be different non-whitespace characters for the two parts of the cookie
- The whitespace padding on each side of the filling is required
- A line return at the end is optional
Examples
Input: oreo
Output:
████
░░
████
Input: o
Output:
█
Input: re
Output: (two spaces)
Input: rere
Output:
░░
░░
Input: oreoorererereoo
Output:
███████████████
░░░░░░░░░░░░░
███████████████
███████████████
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
███████████████
███████████████
Since this is code golf the shortest answer wins, good luck :)
code-golf string ascii-art
1
Is it correct to assume you will not be given the empty string?
– fəˈnɛtɪk
yesterday
1
Will the string only contain "re" and "o"?
– Embodiment of Ignorance
yesterday
1
Yes, I apologize if it's not clear enough in the rules
– GammaGames
yesterday
1
Can we have a trailing newline after the output? That's the default for printing in most languages. Like this.
– Riker
yesterday
1
@GammaGames Hm, ok. Generally consensus is that returning a list of strings is ok I believe, but I'll edit my answer.
– Riker
yesterday
|
show 19 more comments
Oreoorererereoo
Given an input string that is similar to the word "oreo", give an ASCII representation of the cookie that is as wide as the input string (to ensure cookie stability).
Rules
- The input is a non-empty string with no whitespace containing any combination of the strings "o" and "re", and containing only those strings.
- The string "o" represents the solid cookie, while the string "re" represents the filling.
- The output must be a stacked cookie that is as wide as the input string.
- The cookie must overlap the filling by one character on each side
- The characters used for the output don't have to match the output below (█ and ░), they just have to be different non-whitespace characters for the two parts of the cookie
- The whitespace padding on each side of the filling is required
- A line return at the end is optional
Examples
Input: oreo
Output:
████
░░
████
Input: o
Output:
█
Input: re
Output: (two spaces)
Input: rere
Output:
░░
░░
Input: oreoorererereoo
Output:
███████████████
░░░░░░░░░░░░░
███████████████
███████████████
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
███████████████
███████████████
Since this is code golf the shortest answer wins, good luck :)
code-golf string ascii-art
Oreoorererereoo
Given an input string that is similar to the word "oreo", give an ASCII representation of the cookie that is as wide as the input string (to ensure cookie stability).
Rules
- The input is a non-empty string with no whitespace containing any combination of the strings "o" and "re", and containing only those strings.
- The string "o" represents the solid cookie, while the string "re" represents the filling.
- The output must be a stacked cookie that is as wide as the input string.
- The cookie must overlap the filling by one character on each side
- The characters used for the output don't have to match the output below (█ and ░), they just have to be different non-whitespace characters for the two parts of the cookie
- The whitespace padding on each side of the filling is required
- A line return at the end is optional
Examples
Input: oreo
Output:
████
░░
████
Input: o
Output:
█
Input: re
Output: (two spaces)
Input: rere
Output:
░░
░░
Input: oreoorererereoo
Output:
███████████████
░░░░░░░░░░░░░
███████████████
███████████████
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
░░░░░░░░░░░░░
███████████████
███████████████
Since this is code golf the shortest answer wins, good luck :)
code-golf string ascii-art
code-golf string ascii-art
edited 9 hours ago
asked yesterday
GammaGames
465211
465211
1
Is it correct to assume you will not be given the empty string?
– fəˈnɛtɪk
yesterday
1
Will the string only contain "re" and "o"?
– Embodiment of Ignorance
yesterday
1
Yes, I apologize if it's not clear enough in the rules
– GammaGames
yesterday
1
Can we have a trailing newline after the output? That's the default for printing in most languages. Like this.
– Riker
yesterday
1
@GammaGames Hm, ok. Generally consensus is that returning a list of strings is ok I believe, but I'll edit my answer.
– Riker
yesterday
|
show 19 more comments
1
Is it correct to assume you will not be given the empty string?
– fəˈnɛtɪk
yesterday
1
Will the string only contain "re" and "o"?
– Embodiment of Ignorance
yesterday
1
Yes, I apologize if it's not clear enough in the rules
– GammaGames
yesterday
1
Can we have a trailing newline after the output? That's the default for printing in most languages. Like this.
– Riker
yesterday
1
@GammaGames Hm, ok. Generally consensus is that returning a list of strings is ok I believe, but I'll edit my answer.
– Riker
yesterday
1
1
Is it correct to assume you will not be given the empty string?
– fəˈnɛtɪk
yesterday
Is it correct to assume you will not be given the empty string?
– fəˈnɛtɪk
yesterday
1
1
Will the string only contain "re" and "o"?
– Embodiment of Ignorance
yesterday
Will the string only contain "re" and "o"?
– Embodiment of Ignorance
yesterday
1
1
Yes, I apologize if it's not clear enough in the rules
– GammaGames
yesterday
Yes, I apologize if it's not clear enough in the rules
– GammaGames
yesterday
1
1
Can we have a trailing newline after the output? That's the default for printing in most languages. Like this.
– Riker
yesterday
Can we have a trailing newline after the output? That's the default for printing in most languages. Like this.
– Riker
yesterday
1
1
@GammaGames Hm, ok. Generally consensus is that returning a list of strings is ok I believe, but I'll edit my answer.
– Riker
yesterday
@GammaGames Hm, ok. Generally consensus is that returning a list of strings is ok I believe, but I'll edit my answer.
– Riker
yesterday
|
show 19 more comments
27 Answers
27
active
oldest
votes
Canvas, 19 18 17 bytes
e ∙╋
:r≠*┤];L×⁸↔⁸
Try it here!
Uses the annoyingly long code of :r≠*┤]
to remove r
s from the input..
That's a handy feature, and cool language!
– GammaGames
yesterday
add a comment |
05AB1E, 18 bytes
'eKεD'rQ2*Igα×}».c
Uses o
for the cookie and r
for the filling.
Try it online or verify all test cases.
Explanation:
'eK '# Remove all "e" from the (implicit) input
# i.e. "orereo" → "orro"
ε } # Map all characters to:
D # Duplicate the current character
'rQ '# Check if it's an "r" (1 if truthy; 0 if falsey)
# i.e. "r" → 1
# i.e. "o" → 0
2* # Multiply that by 2
# i.e. 1 → 2
# i.e. 0 → 0
Ig # Take the length of the input
# i.e. "orereo" → 6
α # Take the absolute difference between the two
# i.e. 2 and 6 → 4
# i.e. 0 and 6 → 6
× # Repeat the duplicated character that many times
# i.e. "r" and 4 → "rrrr"
# i.e. "o" and 6 → "oooooo"
» # After the map, join everything by newlines
# i.e. ["oooooo","rrrr","rrrr","oooooo"] → "oooooonrrrrnrrrrnoooooo"
.c # Then centralize it (and output implicitly)
# i.e. "oooooonrrrrnrrrrnoooooo" → "oooooon rrrrn rrrrnoooooo"
add a comment |
Japt -R
, 16 15 bytes
re ¬£çX sX²èrÃû
Try it
:Implicit input of string U
re :Remove all "e"s
¬ :Split to array of characters
£ :Map each X
çX : Repeat X to the length of U
s : Slice from index
X² : Duplicate X
èr : Count the occurrences of "r"
à :End map
û :Centre pad each element with spaces to the length of the longest
:Implicitly join with newlines and output
Alternatives
re ¬ËpUÊaD²èrÃû
re ¬£îX rr²i^Ãû
add a comment |
C# (Visual C# Interactive Compiler), 95 bytes
n=>n.Replace("o",new String('-',n.Length)+"n").Replace("re"," ".PadRight(n.Length-1,'|')+"n")
Try it online!
Alternative using Aggregate, 108 bytes
n=>n.Aggregate("",(d,c)=>d+(c<102?"":c<112?new String('-',n.Length)+"n":" ".PadRight(n.Length-1,'|')+"n"))
Try it online!
1
now it trims trailing spaces..
– dzaima
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
Your replace doesn't work when the input iso
, since then.Length-2
will result in-1
.
– Kevin Cruijssen
19 hours ago
Then.Length-2
is is for when the input hasre
.
– Embodiment of Ignorance
12 hours ago
add a comment |
R, 119 118 bytes
function(s,N=nchar(s)){m=t(replicate(N,el(strsplit(gsub('re',0,s),''))))
m[m<1&row(m)%in%c(1,N)]=' '
write(m,1,N,,'')}
Try it online!
- -1 byte thanks to @Giuseppe
Unrolled code and explanation :
function(s){ # s is the input string, e.g. 'oreo'
N = nchar(s) # store the length of s into N, e.g. 4
s1 = gsub('re',0,s) # replace 're' with '0' and store in s1, e.g. 'o0o'
v = el(strsplit(s1,'')) # split s1 into a vector v of single characters
# e.g. 'o','0','o'
m = replicate(N,v) # evaluate N times the vector v and arrange
# the result into a matrix m (nchar(s1) x N)
# e.g.
# 'o' 'o' 'o' 'o'
# '0' '0' '0' '0'
# 'o' 'o' 'o' 'o'
m = t(m) # transpose the matrix
m[m<1 & row(m)%in%c(1,N)] = ' ' # substitute the zeros (i.e. where < 1)
# on the 1st and last row of the matrix with ' ' (space)
# e.g.
# 'o' ' ' 'o'
# 'o' '0' 'o'
# 'o' '0' 'o'
# 'o' ' ' 'o'
write(m,1,N,,'') # write the matrix to stdout (write function transposes it)
# e.g.
# oooo
# 00
# oooo
}
106 bytes
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
add a comment |
Retina, 74 73 bytes
I feel like I haven't posted an answer in a very long time. Well, here I am. Also, Retina has changed a lot, and I feel like I suck at it now.
.+
$0$.0
(d+)
*
e
o|r
$&¶
_$
+(/_/&`o¶
oo¶
_$
)/_/&`r¶
rr¶
¶$
m`^r
Try it online!
1
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
2
I like how[or]
meanso
orr
instead of[
or]
. Makes my head hurt.
– nedla2004
yesterday
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
|
show 1 more comment
Jelly, 16 14 bytes
OḂƇẒẋ€LaØ.¦€⁶Y
Uses 1
for the cream and 0
for the cookie.
Try it online!
How?
OḂƇẒẋ€LaØ.¦€⁶Y - Main Link: list of characters, V e.g. 'orereo'
O - ordinal (vectorises) [111,114,101,114,101,111]
Ƈ - filter keep those for which:
Ḃ - modulo 2 [111, 101, 101,111]
Ẓ - is prime? (vectorises) [ 0, 1, 1, 0]
ẋ€ - repeat each by:
L - length (of V) [[0,0,0,0,0,0],[1,1,1,1,1,1],[1,1,1,1,1,1],[0,0,0,0,0,0]]
€ - for each:
¦ - sparse application...
Ø. - ...to indices: literal [0,1] (0 is the rightmost index, 1 is the leftmost)
a - ...apply: logical AND with:
⁶ - space character [[0,0,0,0,0,0],[' ',1,1,1,1,' '],[' ',1,1,1,1,' '],[0,0,0,0,0,0]]
Y - join with newline characters [0,0,0,0,0,0,'n',' ',1,1,1,1,' ','n',' ',1,1,1,1,' ','n',0,0,0,0,0,0]
- implicit print ...smashes everything together:
- 000000
- 1111
- 1111
- 000000
Previous 16 byter:
ḟ”eẋ€Ly@Ø.¦€⁾r Y
Uses r
for the cr
eam and o
for the co
okie.
Try it online!
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
1
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
add a comment |
JavaScript ES6, 103 bytes
Using replace 103 bytes:
x=>x.replace(/o/g,"-".repeat(s=x.length)+`
`).replace(/re/g," "+"|".repeat(s>1?s-2:0)+`
`).slice(0,-1)
Try it online!
Using split and map 116 bytes:
x=>x.split("re").map(y=>("-"[h='repeat'](r=x.length)+`
`)[h](y.length)).join(" "+"|"[h](r>1?r-2:0)+`
`).slice(0,-1)
Try it online!
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
3
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
2
You can save a byte by using a template string with${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using" "+"|".repeat(s>1?s-2:0)
.
– Ismael Miguel
19 hours ago
add a comment |
Retina, 21 bytes
r
L$`.
$.+*$&
bee
Try it online! Explanation:
r
Delete the r
s.
L$`.
$.+*$&
List each letter on its own line repeated to the length of the original input.
bee
Replace the first two ee
s on each line with a space.
add a comment |
Charcoal, 19 bytes
Fθ≡ιo⟦⭆θ#⟧e«→P⁻Lθ²↙
Try it online! Link is to verbose version of code. Explanation:
Fθ
Loop through the characters of the input string.
≡ι
Switch on each character.
o⟦⭆θ#⟧
If it's an o
then print the input string replaced with #
s on its own line.
e«→P⁻Lθ²↙
If it's an e
then move right, print a line of -
s that's two less than the length of the input string, then move down and left.
add a comment |
Powershell, 71 bytes
$l="$args"|% le*
switch($args|% t*y){'o'{'#'*$l}'r'{" $('%'*($l-2)) "}}
Less golfed test script:
$f = {
$l="$args"|% length
switch($args|% t*y){
'o'{'#'*$l}
'r'{" $('%'*($l-2)) "}
}
}
@(
,(
'oreo',
'####',
' %% ',
'####'
)
,(
'o',
'#'
)
,(
're',
' '
)
,(
'rere',
' %% ',
' %% '
)
,(
'oreoorererereoo',
'###############',
' %%%%%%%%%%%%% ',
'###############',
'###############',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
'###############',
'###############'
)
) | % {
$s,$expected = $_
$result = &$f $s
"$result"-eq"$expected"
# $result # uncomment this line to display a result
}
Output:
True
True
True
True
True
Looks like you don't need parens around the$args
69 bytes
– Veskah
5 hours ago
add a comment |
Python 3, 77 bytes
lambda x:x.replace("o","-"*len(x)+"n").replace("re"," "+'.'*(len(x)-2)+"n")
Try it online!
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
You can remove the space at+" n"
to save a byte.
– Kevin Cruijssen
18 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
add a comment |
Pepe, 364 bytes
Unfortunately the online interpreter does not take care of compressing comments, hence all o
characters will be replaced by a space.. Neither the spaces nor the o
are necessary, so this could be 295 bytes, but I like it more this way:
rEeEEeeEeEororEEoreoreeeEeeeeeorEEEEeoREeoreorEeEEeEEEEororEEoreorEEEEEoREeoreorEeEEEeeEeororEEoreoReoREoREEEeoREEEEEoreorEorEEEeorEEEEEoreEoREeoreoREEeoREEEEeEeeoREEEeoREeeEoREEEeoREEEEEEEorEEEeEorEEEeoREoREEEeoREEEEEoREEoReoreorEEEeEoREEEEEEeorEEEeoReEoREoREEEeoREEoReoroReEeoREoREEEeorEEEEeoReeoREEEeoREeeEoREEEeoREEEEEEEoreoReoReoREoREEEeoREEEEEoreeeeeEeEeoRee
Try it online!
Ungolfed
There might be some golfing oppurtunities with flags which I missed, but I'm done for now:
# "function" for 'e'
rEeEEeeEeE rrEE
re # remove duplicated argument
reeeEeeeee # print space
rEEEEe # decrement counter twice
REe re
# "function" for 'o'
rEeEEeEEEE rrEE
re # remove duplicated argument
rEEEEE # increment counter
REe re
# "function for 'r'
rEeEEEeeEe rrEE
re Re # remove duplicated argument & char
RE REEEe REEEEE # push 1
re rE rEEEe rEEEEE # replace 1
reE # goto 1
REe re
# Main
REEe REEEEeEee # read input & reverse
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
rEEEeE rEEEe # dummy loop-var (fucking do-whiles...)
RE REEEe REEEEE REE # while [label-1]
# Call the right procedure depending on current character,
# sets stacks up as follows:
# R [ .... *currentChar ]
# r [ (N-1) *count ]
Re re # pop 1 & loop-counter
rEEEeE # duplicate counter
REEEEEEe rEEEe # copy current char to other stack
ReE # jeq to 'o'-label or 'e'-label
# Output currentChar count times:
RE REEEe REE # while [label-0]:
Re # pop 0
rReEe # print character
RE REEEe # push 0
rEEEEe # decrement counter
Ree
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
re Re Re # pop 0, counter and 9((((currentChar
RE REEEe REEEEE # push 1
reeeeeEeEe # print new-line
Ree
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
add a comment |
Dart, 120 106 bytes
f(s)=>s.replaceAll('o',''.padRight(s.length,'#')+'n').replaceAll('re',' '.padRight(s.length-1,'-')+'n');
Try it online!
add a comment |
C (gcc), 135 bytes
#define $ putchar
O(char*r){for(char*e,*o=r;*r;*++r&&$(10))if(*r-111){for($(32,r++),e=o+1;*++e;)$(42);$(32);}else for(e=o;*e++;)$(35);}
Try it online!
Shave off a few bytes with-D$=putchar
– Rogem
15 hours ago
add a comment |
Python 2, 77 76 72 bytes
lambda i:'n'.join((x*len(i),' '+x*(len(i)-2))[x>'o']for x in i if'e'<x)
Try it online!
The outer part of the cookie is 'o' and the filling is 'r'.
add a comment |
JavaScript, 72 65 bytes
s=>s.replace(/o|re/g,([x,y])=>(y?`
`:`
`).padEnd(s.length+!y,x))
Try it online
add a comment |
Java 11, 110 bytes
s->{int l=s.length();return s.replace("re"," "+"~".repeat(l-(l<2?1:2))+"n").replace("o","=".repeat(l)+"n");}
Uses =
for the cookie and ~
for the filling.
Try it online.
Explanation:
s->{ // Method with String as both parameter and return-type
int l=s.length(); // Get the length of the input
return s // Return the input
.replace("re", // After we've replaced all "re" with:
" " // A space
+"~".repeat(l-(l<2?1:2))
// Appended with length-2 amount of "~"
// (or length-1 if the input-length was 1)
+"n") // Appended with a newline
.replace("o", // And we've also replaced all "o" with:
"=".repeat(l) // Length amount of "="
+"n");} // Appended with a newline
The above solution uses a replace. The following maps over the characters of the input instead:
Java 11, 113 112 bytes
s->s.chars().forEach(c->{if(c>101)System.out.println((c>111?" ":"")+(""+(char)c).repeat(s.length()-2*(~c&1)));})
-1 byte thanks to @Neil.
Try it online.
Explanation:
s-> // Method with String parameter and no return-type
s.chars().forEach(c->{ // Loop over the characters as codepoint-integers
if(c>101) // If it's not an 'e':
System.out.println( // Print with trailing newline:
(c>111? // If it's an 'r'
" " // Start with a space
: // Else (it's an 'o' instead)
"") // Start with an empty string
+(""+(char)c).repeat( // And append the character itself
.repeat( // Repeated the following amount of times:
s.length() // The input-length
-2*(~c&1)));}) // Minus 2 if it's an "r", or 0 if it's an "o"
1
Can you use~c&1
?
– Neil
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
add a comment |
Pyth, 33 bytes
::z"o"+*lz"="b"re"+.[lz*-lz2"░"db
:z"o" With the input, replace "o" with
*lz"=" "=" times the length of the input
+ b and a newline added to the end
: "re" With the input, replace "re" with
* "~" "~" times
-lz2 the length of the input minus 2
.[ d padded on both sides with " " to
lz the size of the input string
+ b and a newline added to the end
Try it here!
I really like python (it's what I wrote my original test scripts in), so I thought I'd do a pyth entry for fun :)
Edit: Here's a for loop, as well (35 bytes):
FNzIqN"o"*lzN)IqN"r".[lz*-lz2Nd
FNz For each value, N, in input
IqN"o" if the character is "o"
*lzN return the character times the length of the input
) end if
IqN"r" if the character is "r"
*-lz2N return the character times length - 2
.[lz d padded on both sides with " " to the input string
1
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both█
and░
are three bytes each. Or am I missing something here?
– Kevin Cruijssen
22 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character withN
, even saving a few bytes!
– GammaGames
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.
– Kevin Cruijssen
14 hours ago
add a comment |
C# (.NET Core), 143 bytes
Without LINQ.
p=>{var q="";foreach(char c in p){if(c!='e'){for(var j=0;j<p.Length;j++)q+=(j<1|j>p.Length-2)&c>'q'?" ":c<'p'?"█":"░";q+="n";}}return q;};
Try it online!
add a comment |
Perl 5 -p
, 47 bytes
s|o|X x($i=y///c).$/|ge;s|re|$".O x($i-2).$/|ge
Try it online!
add a comment |
SNOBOL4 (CSNOBOL4), 136 bytes
S =INPUT
N =SIZE(S)
S S ('o' | 're') . X REM . S :F(END)
OUTPUT =IDENT('o',X) DUPL(X,N) :S(S)
OUTPUT =' ' DUPL(0,N - 2) ' ' :(S)
END
Try it online!
add a comment |
PHP, 99 bytes
$l=strlen($i=$argv[1]);$r=str_repeat;echo strtr($i,[o=>$r('#',$l)."n",re=>' '.$r('=',$l-2)."n"]);
Try it online!
OUCH. PHP's waaaay_too_long function names strike again!
Output:
$php oreo.php oreo
####
==
####
$php oreo.php o
#
$php oreo.php rere
==
==
$ php oreo.php oreoorererereoo
###############
=============
###############
###############
=============
=============
=============
=============
###############
###############
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
add a comment |
Batch, 133 bytes
@set/ps=
@set o=%s:r=o%
@set o=%o:e=o%
@set r=%o:o=-%
@set r= %r:~2%
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Takes input on STDIN. Explanation:
@set/ps=
Input the string.
@set o=%s:r=o%
@set o=%o:e=o%
Make a copy of the string with all of the r
s and e
s replaced with o
s.
@set r=%o:o=-%
@set r= %r:~2%
Make a copy of the string of o
s, change them to -
s and replace the first two with a space.
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Change the e
s into spaces and also add a space after each o
, allowing the o
s and r
s to be iterated over, printing the appropriate string each time.
add a comment |
Mathematica, 111 bytes
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
You can try it by going to https://develop.open.wolframcloud.com/app/ and clicking "Create a new notebook" and entering code like the following and then hitting Shift+Enter.
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&@"ooreoreore"
This code is not very fancy but it seems too expensive to convert away from strings and then back or to do anything else clever. In particular, with only 3-4 commands that have the name String, we don't save bytes at all by trying to abstract that away. For example, the following is 129 bytes:
(w=Symbol["String"<>#]&;z=w@"Repeat";n=w["Length"]@#;#~w@"Replace"~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
add a comment |
CJam, 27 bytes
q:T'e-{i2%T,'9*_:)2>S+?N}/
Try it online!
Explanation:
q read input: | "oreoo"
:T store in variable T | "oreoo", T="oreoo"
'e- remove all 'e' characters: | "oroo"
{ }/ for each character: | 'o
i get Unicode value: | 79
2% modulo 2: | 1
T push original input: | 1 "oreoo"
, get length: | 1 5
'9* repeat '9' that many times: | 1 "99999"
_ duplicate: | 1 "99999" "99999"
:) increment every character: | 1 "99999" ":::::"
2> remove first two characters: | 1 "99999" ":::"
S+ prepend a space: | 1 "99999" " :::"
? conditional: | "99999"
N add a newline: | "99999" N
(implicit output) | "99999" N " :::" N "99999" N "99999" N
add a comment |
C# (Visual C# Interactive Compiler), 71 bytes
s=>s.Aggregate("",(a,c)=>a+(c>111?" ":"n".PadLeft(s.Length+c/5-21,c)))
Try it online!
Borrowed some ideas from on Embodiment of Ignorance's answer for sure.
-6 bytes thanks to @ASCIIOnly!
The overall concept is to compute a string aggregate over the input characters following these rules:
- If an
r
is encountered, append a single spacecharacter for indentation. We know the next character will be an
e
. - If an
o
or ane
is encountered, generate a string by repeating the current character a specific number of times and prepending it to a newline. The number of times to repeat is determined by length of input string and whether the current line is indented. - The
PadLeft
function is used to generate the repeating character string.
The result is the concatenation of all of these strings.
1
71
– ASCII-only
4 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
85?
– ASCII-only
25 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 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');
});
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%2f178344%2foreoorererereoo%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
27 Answers
27
active
oldest
votes
27 Answers
27
active
oldest
votes
active
oldest
votes
active
oldest
votes
Canvas, 19 18 17 bytes
e ∙╋
:r≠*┤];L×⁸↔⁸
Try it here!
Uses the annoyingly long code of :r≠*┤]
to remove r
s from the input..
That's a handy feature, and cool language!
– GammaGames
yesterday
add a comment |
Canvas, 19 18 17 bytes
e ∙╋
:r≠*┤];L×⁸↔⁸
Try it here!
Uses the annoyingly long code of :r≠*┤]
to remove r
s from the input..
That's a handy feature, and cool language!
– GammaGames
yesterday
add a comment |
Canvas, 19 18 17 bytes
e ∙╋
:r≠*┤];L×⁸↔⁸
Try it here!
Uses the annoyingly long code of :r≠*┤]
to remove r
s from the input..
Canvas, 19 18 17 bytes
e ∙╋
:r≠*┤];L×⁸↔⁸
Try it here!
Uses the annoyingly long code of :r≠*┤]
to remove r
s from the input..
edited 8 hours ago
answered yesterday
dzaima
14.5k21754
14.5k21754
That's a handy feature, and cool language!
– GammaGames
yesterday
add a comment |
That's a handy feature, and cool language!
– GammaGames
yesterday
That's a handy feature, and cool language!
– GammaGames
yesterday
That's a handy feature, and cool language!
– GammaGames
yesterday
add a comment |
05AB1E, 18 bytes
'eKεD'rQ2*Igα×}».c
Uses o
for the cookie and r
for the filling.
Try it online or verify all test cases.
Explanation:
'eK '# Remove all "e" from the (implicit) input
# i.e. "orereo" → "orro"
ε } # Map all characters to:
D # Duplicate the current character
'rQ '# Check if it's an "r" (1 if truthy; 0 if falsey)
# i.e. "r" → 1
# i.e. "o" → 0
2* # Multiply that by 2
# i.e. 1 → 2
# i.e. 0 → 0
Ig # Take the length of the input
# i.e. "orereo" → 6
α # Take the absolute difference between the two
# i.e. 2 and 6 → 4
# i.e. 0 and 6 → 6
× # Repeat the duplicated character that many times
# i.e. "r" and 4 → "rrrr"
# i.e. "o" and 6 → "oooooo"
» # After the map, join everything by newlines
# i.e. ["oooooo","rrrr","rrrr","oooooo"] → "oooooonrrrrnrrrrnoooooo"
.c # Then centralize it (and output implicitly)
# i.e. "oooooonrrrrnrrrrnoooooo" → "oooooon rrrrn rrrrnoooooo"
add a comment |
05AB1E, 18 bytes
'eKεD'rQ2*Igα×}».c
Uses o
for the cookie and r
for the filling.
Try it online or verify all test cases.
Explanation:
'eK '# Remove all "e" from the (implicit) input
# i.e. "orereo" → "orro"
ε } # Map all characters to:
D # Duplicate the current character
'rQ '# Check if it's an "r" (1 if truthy; 0 if falsey)
# i.e. "r" → 1
# i.e. "o" → 0
2* # Multiply that by 2
# i.e. 1 → 2
# i.e. 0 → 0
Ig # Take the length of the input
# i.e. "orereo" → 6
α # Take the absolute difference between the two
# i.e. 2 and 6 → 4
# i.e. 0 and 6 → 6
× # Repeat the duplicated character that many times
# i.e. "r" and 4 → "rrrr"
# i.e. "o" and 6 → "oooooo"
» # After the map, join everything by newlines
# i.e. ["oooooo","rrrr","rrrr","oooooo"] → "oooooonrrrrnrrrrnoooooo"
.c # Then centralize it (and output implicitly)
# i.e. "oooooonrrrrnrrrrnoooooo" → "oooooon rrrrn rrrrnoooooo"
add a comment |
05AB1E, 18 bytes
'eKεD'rQ2*Igα×}».c
Uses o
for the cookie and r
for the filling.
Try it online or verify all test cases.
Explanation:
'eK '# Remove all "e" from the (implicit) input
# i.e. "orereo" → "orro"
ε } # Map all characters to:
D # Duplicate the current character
'rQ '# Check if it's an "r" (1 if truthy; 0 if falsey)
# i.e. "r" → 1
# i.e. "o" → 0
2* # Multiply that by 2
# i.e. 1 → 2
# i.e. 0 → 0
Ig # Take the length of the input
# i.e. "orereo" → 6
α # Take the absolute difference between the two
# i.e. 2 and 6 → 4
# i.e. 0 and 6 → 6
× # Repeat the duplicated character that many times
# i.e. "r" and 4 → "rrrr"
# i.e. "o" and 6 → "oooooo"
» # After the map, join everything by newlines
# i.e. ["oooooo","rrrr","rrrr","oooooo"] → "oooooonrrrrnrrrrnoooooo"
.c # Then centralize it (and output implicitly)
# i.e. "oooooonrrrrnrrrrnoooooo" → "oooooon rrrrn rrrrnoooooo"
05AB1E, 18 bytes
'eKεD'rQ2*Igα×}».c
Uses o
for the cookie and r
for the filling.
Try it online or verify all test cases.
Explanation:
'eK '# Remove all "e" from the (implicit) input
# i.e. "orereo" → "orro"
ε } # Map all characters to:
D # Duplicate the current character
'rQ '# Check if it's an "r" (1 if truthy; 0 if falsey)
# i.e. "r" → 1
# i.e. "o" → 0
2* # Multiply that by 2
# i.e. 1 → 2
# i.e. 0 → 0
Ig # Take the length of the input
# i.e. "orereo" → 6
α # Take the absolute difference between the two
# i.e. 2 and 6 → 4
# i.e. 0 and 6 → 6
× # Repeat the duplicated character that many times
# i.e. "r" and 4 → "rrrr"
# i.e. "o" and 6 → "oooooo"
» # After the map, join everything by newlines
# i.e. ["oooooo","rrrr","rrrr","oooooo"] → "oooooonrrrrnrrrrnoooooo"
.c # Then centralize it (and output implicitly)
# i.e. "oooooonrrrrnrrrrnoooooo" → "oooooon rrrrn rrrrnoooooo"
answered 21 hours ago
Kevin Cruijssen
35.9k554188
35.9k554188
add a comment |
add a comment |
Japt -R
, 16 15 bytes
re ¬£çX sX²èrÃû
Try it
:Implicit input of string U
re :Remove all "e"s
¬ :Split to array of characters
£ :Map each X
çX : Repeat X to the length of U
s : Slice from index
X² : Duplicate X
èr : Count the occurrences of "r"
à :End map
û :Centre pad each element with spaces to the length of the longest
:Implicitly join with newlines and output
Alternatives
re ¬ËpUÊaD²èrÃû
re ¬£îX rr²i^Ãû
add a comment |
Japt -R
, 16 15 bytes
re ¬£çX sX²èrÃû
Try it
:Implicit input of string U
re :Remove all "e"s
¬ :Split to array of characters
£ :Map each X
çX : Repeat X to the length of U
s : Slice from index
X² : Duplicate X
èr : Count the occurrences of "r"
à :End map
û :Centre pad each element with spaces to the length of the longest
:Implicitly join with newlines and output
Alternatives
re ¬ËpUÊaD²èrÃû
re ¬£îX rr²i^Ãû
add a comment |
Japt -R
, 16 15 bytes
re ¬£çX sX²èrÃû
Try it
:Implicit input of string U
re :Remove all "e"s
¬ :Split to array of characters
£ :Map each X
çX : Repeat X to the length of U
s : Slice from index
X² : Duplicate X
èr : Count the occurrences of "r"
à :End map
û :Centre pad each element with spaces to the length of the longest
:Implicitly join with newlines and output
Alternatives
re ¬ËpUÊaD²èrÃû
re ¬£îX rr²i^Ãû
Japt -R
, 16 15 bytes
re ¬£çX sX²èrÃû
Try it
:Implicit input of string U
re :Remove all "e"s
¬ :Split to array of characters
£ :Map each X
çX : Repeat X to the length of U
s : Slice from index
X² : Duplicate X
èr : Count the occurrences of "r"
à :End map
û :Centre pad each element with spaces to the length of the longest
:Implicitly join with newlines and output
Alternatives
re ¬ËpUÊaD²èrÃû
re ¬£îX rr²i^Ãû
edited 14 hours ago
answered 21 hours ago
Shaggy
19k21666
19k21666
add a comment |
add a comment |
C# (Visual C# Interactive Compiler), 95 bytes
n=>n.Replace("o",new String('-',n.Length)+"n").Replace("re"," ".PadRight(n.Length-1,'|')+"n")
Try it online!
Alternative using Aggregate, 108 bytes
n=>n.Aggregate("",(d,c)=>d+(c<102?"":c<112?new String('-',n.Length)+"n":" ".PadRight(n.Length-1,'|')+"n"))
Try it online!
1
now it trims trailing spaces..
– dzaima
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
Your replace doesn't work when the input iso
, since then.Length-2
will result in-1
.
– Kevin Cruijssen
19 hours ago
Then.Length-2
is is for when the input hasre
.
– Embodiment of Ignorance
12 hours ago
add a comment |
C# (Visual C# Interactive Compiler), 95 bytes
n=>n.Replace("o",new String('-',n.Length)+"n").Replace("re"," ".PadRight(n.Length-1,'|')+"n")
Try it online!
Alternative using Aggregate, 108 bytes
n=>n.Aggregate("",(d,c)=>d+(c<102?"":c<112?new String('-',n.Length)+"n":" ".PadRight(n.Length-1,'|')+"n"))
Try it online!
1
now it trims trailing spaces..
– dzaima
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
Your replace doesn't work when the input iso
, since then.Length-2
will result in-1
.
– Kevin Cruijssen
19 hours ago
Then.Length-2
is is for when the input hasre
.
– Embodiment of Ignorance
12 hours ago
add a comment |
C# (Visual C# Interactive Compiler), 95 bytes
n=>n.Replace("o",new String('-',n.Length)+"n").Replace("re"," ".PadRight(n.Length-1,'|')+"n")
Try it online!
Alternative using Aggregate, 108 bytes
n=>n.Aggregate("",(d,c)=>d+(c<102?"":c<112?new String('-',n.Length)+"n":" ".PadRight(n.Length-1,'|')+"n"))
Try it online!
C# (Visual C# Interactive Compiler), 95 bytes
n=>n.Replace("o",new String('-',n.Length)+"n").Replace("re"," ".PadRight(n.Length-1,'|')+"n")
Try it online!
Alternative using Aggregate, 108 bytes
n=>n.Aggregate("",(d,c)=>d+(c<102?"":c<112?new String('-',n.Length)+"n":" ".PadRight(n.Length-1,'|')+"n"))
Try it online!
edited 12 hours ago
answered yesterday
Embodiment of Ignorance
55014
55014
1
now it trims trailing spaces..
– dzaima
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
Your replace doesn't work when the input iso
, since then.Length-2
will result in-1
.
– Kevin Cruijssen
19 hours ago
Then.Length-2
is is for when the input hasre
.
– Embodiment of Ignorance
12 hours ago
add a comment |
1
now it trims trailing spaces..
– dzaima
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
Your replace doesn't work when the input iso
, since then.Length-2
will result in-1
.
– Kevin Cruijssen
19 hours ago
Then.Length-2
is is for when the input hasre
.
– Embodiment of Ignorance
12 hours ago
1
1
now it trims trailing spaces..
– dzaima
yesterday
now it trims trailing spaces..
– dzaima
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
Your replace doesn't work when the input is
o
, since the n.Length-2
will result in -1
.– Kevin Cruijssen
19 hours ago
Your replace doesn't work when the input is
o
, since the n.Length-2
will result in -1
.– Kevin Cruijssen
19 hours ago
The
n.Length-2
is is for when the input has re
.– Embodiment of Ignorance
12 hours ago
The
n.Length-2
is is for when the input has re
.– Embodiment of Ignorance
12 hours ago
add a comment |
R, 119 118 bytes
function(s,N=nchar(s)){m=t(replicate(N,el(strsplit(gsub('re',0,s),''))))
m[m<1&row(m)%in%c(1,N)]=' '
write(m,1,N,,'')}
Try it online!
- -1 byte thanks to @Giuseppe
Unrolled code and explanation :
function(s){ # s is the input string, e.g. 'oreo'
N = nchar(s) # store the length of s into N, e.g. 4
s1 = gsub('re',0,s) # replace 're' with '0' and store in s1, e.g. 'o0o'
v = el(strsplit(s1,'')) # split s1 into a vector v of single characters
# e.g. 'o','0','o'
m = replicate(N,v) # evaluate N times the vector v and arrange
# the result into a matrix m (nchar(s1) x N)
# e.g.
# 'o' 'o' 'o' 'o'
# '0' '0' '0' '0'
# 'o' 'o' 'o' 'o'
m = t(m) # transpose the matrix
m[m<1 & row(m)%in%c(1,N)] = ' ' # substitute the zeros (i.e. where < 1)
# on the 1st and last row of the matrix with ' ' (space)
# e.g.
# 'o' ' ' 'o'
# 'o' '0' 'o'
# 'o' '0' 'o'
# 'o' ' ' 'o'
write(m,1,N,,'') # write the matrix to stdout (write function transposes it)
# e.g.
# oooo
# 00
# oooo
}
106 bytes
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
add a comment |
R, 119 118 bytes
function(s,N=nchar(s)){m=t(replicate(N,el(strsplit(gsub('re',0,s),''))))
m[m<1&row(m)%in%c(1,N)]=' '
write(m,1,N,,'')}
Try it online!
- -1 byte thanks to @Giuseppe
Unrolled code and explanation :
function(s){ # s is the input string, e.g. 'oreo'
N = nchar(s) # store the length of s into N, e.g. 4
s1 = gsub('re',0,s) # replace 're' with '0' and store in s1, e.g. 'o0o'
v = el(strsplit(s1,'')) # split s1 into a vector v of single characters
# e.g. 'o','0','o'
m = replicate(N,v) # evaluate N times the vector v and arrange
# the result into a matrix m (nchar(s1) x N)
# e.g.
# 'o' 'o' 'o' 'o'
# '0' '0' '0' '0'
# 'o' 'o' 'o' 'o'
m = t(m) # transpose the matrix
m[m<1 & row(m)%in%c(1,N)] = ' ' # substitute the zeros (i.e. where < 1)
# on the 1st and last row of the matrix with ' ' (space)
# e.g.
# 'o' ' ' 'o'
# 'o' '0' 'o'
# 'o' '0' 'o'
# 'o' ' ' 'o'
write(m,1,N,,'') # write the matrix to stdout (write function transposes it)
# e.g.
# oooo
# 00
# oooo
}
106 bytes
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
add a comment |
R, 119 118 bytes
function(s,N=nchar(s)){m=t(replicate(N,el(strsplit(gsub('re',0,s),''))))
m[m<1&row(m)%in%c(1,N)]=' '
write(m,1,N,,'')}
Try it online!
- -1 byte thanks to @Giuseppe
Unrolled code and explanation :
function(s){ # s is the input string, e.g. 'oreo'
N = nchar(s) # store the length of s into N, e.g. 4
s1 = gsub('re',0,s) # replace 're' with '0' and store in s1, e.g. 'o0o'
v = el(strsplit(s1,'')) # split s1 into a vector v of single characters
# e.g. 'o','0','o'
m = replicate(N,v) # evaluate N times the vector v and arrange
# the result into a matrix m (nchar(s1) x N)
# e.g.
# 'o' 'o' 'o' 'o'
# '0' '0' '0' '0'
# 'o' 'o' 'o' 'o'
m = t(m) # transpose the matrix
m[m<1 & row(m)%in%c(1,N)] = ' ' # substitute the zeros (i.e. where < 1)
# on the 1st and last row of the matrix with ' ' (space)
# e.g.
# 'o' ' ' 'o'
# 'o' '0' 'o'
# 'o' '0' 'o'
# 'o' ' ' 'o'
write(m,1,N,,'') # write the matrix to stdout (write function transposes it)
# e.g.
# oooo
# 00
# oooo
}
R, 119 118 bytes
function(s,N=nchar(s)){m=t(replicate(N,el(strsplit(gsub('re',0,s),''))))
m[m<1&row(m)%in%c(1,N)]=' '
write(m,1,N,,'')}
Try it online!
- -1 byte thanks to @Giuseppe
Unrolled code and explanation :
function(s){ # s is the input string, e.g. 'oreo'
N = nchar(s) # store the length of s into N, e.g. 4
s1 = gsub('re',0,s) # replace 're' with '0' and store in s1, e.g. 'o0o'
v = el(strsplit(s1,'')) # split s1 into a vector v of single characters
# e.g. 'o','0','o'
m = replicate(N,v) # evaluate N times the vector v and arrange
# the result into a matrix m (nchar(s1) x N)
# e.g.
# 'o' 'o' 'o' 'o'
# '0' '0' '0' '0'
# 'o' 'o' 'o' 'o'
m = t(m) # transpose the matrix
m[m<1 & row(m)%in%c(1,N)] = ' ' # substitute the zeros (i.e. where < 1)
# on the 1st and last row of the matrix with ' ' (space)
# e.g.
# 'o' ' ' 'o'
# 'o' '0' 'o'
# 'o' '0' 'o'
# 'o' ' ' 'o'
write(m,1,N,,'') # write the matrix to stdout (write function transposes it)
# e.g.
# oooo
# 00
# oooo
}
edited 12 hours ago
answered 20 hours ago
digEmAll
2,579411
2,579411
106 bytes
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
add a comment |
106 bytes
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
106 bytes
– Giuseppe
6 hours ago
106 bytes
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
aaand 104 bytes returning a list of lines, which isn't acceptable here, but it's an interesting idea (essentially my SNOBOL submission translated to R)
– Giuseppe
6 hours ago
add a comment |
Retina, 74 73 bytes
I feel like I haven't posted an answer in a very long time. Well, here I am. Also, Retina has changed a lot, and I feel like I suck at it now.
.+
$0$.0
(d+)
*
e
o|r
$&¶
_$
+(/_/&`o¶
oo¶
_$
)/_/&`r¶
rr¶
¶$
m`^r
Try it online!
1
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
2
I like how[or]
meanso
orr
instead of[
or]
. Makes my head hurt.
– nedla2004
yesterday
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
|
show 1 more comment
Retina, 74 73 bytes
I feel like I haven't posted an answer in a very long time. Well, here I am. Also, Retina has changed a lot, and I feel like I suck at it now.
.+
$0$.0
(d+)
*
e
o|r
$&¶
_$
+(/_/&`o¶
oo¶
_$
)/_/&`r¶
rr¶
¶$
m`^r
Try it online!
1
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
2
I like how[or]
meanso
orr
instead of[
or]
. Makes my head hurt.
– nedla2004
yesterday
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
|
show 1 more comment
Retina, 74 73 bytes
I feel like I haven't posted an answer in a very long time. Well, here I am. Also, Retina has changed a lot, and I feel like I suck at it now.
.+
$0$.0
(d+)
*
e
o|r
$&¶
_$
+(/_/&`o¶
oo¶
_$
)/_/&`r¶
rr¶
¶$
m`^r
Try it online!
Retina, 74 73 bytes
I feel like I haven't posted an answer in a very long time. Well, here I am. Also, Retina has changed a lot, and I feel like I suck at it now.
.+
$0$.0
(d+)
*
e
o|r
$&¶
_$
+(/_/&`o¶
oo¶
_$
)/_/&`r¶
rr¶
¶$
m`^r
Try it online!
edited 9 hours ago
answered yesterday
mbomb007
17.5k542118
17.5k542118
1
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
2
I like how[or]
meanso
orr
instead of[
or]
. Makes my head hurt.
– nedla2004
yesterday
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
|
show 1 more comment
1
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
2
I like how[or]
meanso
orr
instead of[
or]
. Makes my head hurt.
– nedla2004
yesterday
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
1
1
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
Whoa, what a crazy looking language. I like it!
– GammaGames
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
doesn't include trailing whitespaces..
– dzaima
yesterday
2
2
I like how
[or]
means o
or r
instead of [
or ]
. Makes my head hurt.– nedla2004
yesterday
I like how
[or]
means o
or r
instead of [
or ]
. Makes my head hurt.– nedla2004
yesterday
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@dzaima The question does not specify that trailing whitespaces are required. A comment asked, but no reply was given.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
@nedla2004 That actually helped me notice a way to save a byte. Thanks.
– mbomb007
9 hours ago
|
show 1 more comment
Jelly, 16 14 bytes
OḂƇẒẋ€LaØ.¦€⁶Y
Uses 1
for the cream and 0
for the cookie.
Try it online!
How?
OḂƇẒẋ€LaØ.¦€⁶Y - Main Link: list of characters, V e.g. 'orereo'
O - ordinal (vectorises) [111,114,101,114,101,111]
Ƈ - filter keep those for which:
Ḃ - modulo 2 [111, 101, 101,111]
Ẓ - is prime? (vectorises) [ 0, 1, 1, 0]
ẋ€ - repeat each by:
L - length (of V) [[0,0,0,0,0,0],[1,1,1,1,1,1],[1,1,1,1,1,1],[0,0,0,0,0,0]]
€ - for each:
¦ - sparse application...
Ø. - ...to indices: literal [0,1] (0 is the rightmost index, 1 is the leftmost)
a - ...apply: logical AND with:
⁶ - space character [[0,0,0,0,0,0],[' ',1,1,1,1,' '],[' ',1,1,1,1,' '],[0,0,0,0,0,0]]
Y - join with newline characters [0,0,0,0,0,0,'n',' ',1,1,1,1,' ','n',' ',1,1,1,1,' ','n',0,0,0,0,0,0]
- implicit print ...smashes everything together:
- 000000
- 1111
- 1111
- 000000
Previous 16 byter:
ḟ”eẋ€Ly@Ø.¦€⁾r Y
Uses r
for the cr
eam and o
for the co
okie.
Try it online!
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
1
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
add a comment |
Jelly, 16 14 bytes
OḂƇẒẋ€LaØ.¦€⁶Y
Uses 1
for the cream and 0
for the cookie.
Try it online!
How?
OḂƇẒẋ€LaØ.¦€⁶Y - Main Link: list of characters, V e.g. 'orereo'
O - ordinal (vectorises) [111,114,101,114,101,111]
Ƈ - filter keep those for which:
Ḃ - modulo 2 [111, 101, 101,111]
Ẓ - is prime? (vectorises) [ 0, 1, 1, 0]
ẋ€ - repeat each by:
L - length (of V) [[0,0,0,0,0,0],[1,1,1,1,1,1],[1,1,1,1,1,1],[0,0,0,0,0,0]]
€ - for each:
¦ - sparse application...
Ø. - ...to indices: literal [0,1] (0 is the rightmost index, 1 is the leftmost)
a - ...apply: logical AND with:
⁶ - space character [[0,0,0,0,0,0],[' ',1,1,1,1,' '],[' ',1,1,1,1,' '],[0,0,0,0,0,0]]
Y - join with newline characters [0,0,0,0,0,0,'n',' ',1,1,1,1,' ','n',' ',1,1,1,1,' ','n',0,0,0,0,0,0]
- implicit print ...smashes everything together:
- 000000
- 1111
- 1111
- 000000
Previous 16 byter:
ḟ”eẋ€Ly@Ø.¦€⁾r Y
Uses r
for the cr
eam and o
for the co
okie.
Try it online!
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
1
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
add a comment |
Jelly, 16 14 bytes
OḂƇẒẋ€LaØ.¦€⁶Y
Uses 1
for the cream and 0
for the cookie.
Try it online!
How?
OḂƇẒẋ€LaØ.¦€⁶Y - Main Link: list of characters, V e.g. 'orereo'
O - ordinal (vectorises) [111,114,101,114,101,111]
Ƈ - filter keep those for which:
Ḃ - modulo 2 [111, 101, 101,111]
Ẓ - is prime? (vectorises) [ 0, 1, 1, 0]
ẋ€ - repeat each by:
L - length (of V) [[0,0,0,0,0,0],[1,1,1,1,1,1],[1,1,1,1,1,1],[0,0,0,0,0,0]]
€ - for each:
¦ - sparse application...
Ø. - ...to indices: literal [0,1] (0 is the rightmost index, 1 is the leftmost)
a - ...apply: logical AND with:
⁶ - space character [[0,0,0,0,0,0],[' ',1,1,1,1,' '],[' ',1,1,1,1,' '],[0,0,0,0,0,0]]
Y - join with newline characters [0,0,0,0,0,0,'n',' ',1,1,1,1,' ','n',' ',1,1,1,1,' ','n',0,0,0,0,0,0]
- implicit print ...smashes everything together:
- 000000
- 1111
- 1111
- 000000
Previous 16 byter:
ḟ”eẋ€Ly@Ø.¦€⁾r Y
Uses r
for the cr
eam and o
for the co
okie.
Try it online!
Jelly, 16 14 bytes
OḂƇẒẋ€LaØ.¦€⁶Y
Uses 1
for the cream and 0
for the cookie.
Try it online!
How?
OḂƇẒẋ€LaØ.¦€⁶Y - Main Link: list of characters, V e.g. 'orereo'
O - ordinal (vectorises) [111,114,101,114,101,111]
Ƈ - filter keep those for which:
Ḃ - modulo 2 [111, 101, 101,111]
Ẓ - is prime? (vectorises) [ 0, 1, 1, 0]
ẋ€ - repeat each by:
L - length (of V) [[0,0,0,0,0,0],[1,1,1,1,1,1],[1,1,1,1,1,1],[0,0,0,0,0,0]]
€ - for each:
¦ - sparse application...
Ø. - ...to indices: literal [0,1] (0 is the rightmost index, 1 is the leftmost)
a - ...apply: logical AND with:
⁶ - space character [[0,0,0,0,0,0],[' ',1,1,1,1,' '],[' ',1,1,1,1,' '],[0,0,0,0,0,0]]
Y - join with newline characters [0,0,0,0,0,0,'n',' ',1,1,1,1,' ','n',' ',1,1,1,1,' ','n',0,0,0,0,0,0]
- implicit print ...smashes everything together:
- 000000
- 1111
- 1111
- 000000
Previous 16 byter:
ḟ”eẋ€Ly@Ø.¦€⁾r Y
Uses r
for the cr
eam and o
for the co
okie.
Try it online!
edited 10 hours ago
answered 11 hours ago
Jonathan Allan
50.8k534165
50.8k534165
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
1
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
add a comment |
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
1
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
I was hoping for a Jelly entry, such an interesting language!
– GammaGames
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
Just trying to create something more terse. Will give explanation later... :)
– Jonathan Allan
11 hours ago
1
1
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
...hoorah, that's more like it :)
– Jonathan Allan
10 hours ago
add a comment |
JavaScript ES6, 103 bytes
Using replace 103 bytes:
x=>x.replace(/o/g,"-".repeat(s=x.length)+`
`).replace(/re/g," "+"|".repeat(s>1?s-2:0)+`
`).slice(0,-1)
Try it online!
Using split and map 116 bytes:
x=>x.split("re").map(y=>("-"[h='repeat'](r=x.length)+`
`)[h](y.length)).join(" "+"|"[h](r>1?r-2:0)+`
`).slice(0,-1)
Try it online!
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
3
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
2
You can save a byte by using a template string with${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using" "+"|".repeat(s>1?s-2:0)
.
– Ismael Miguel
19 hours ago
add a comment |
JavaScript ES6, 103 bytes
Using replace 103 bytes:
x=>x.replace(/o/g,"-".repeat(s=x.length)+`
`).replace(/re/g," "+"|".repeat(s>1?s-2:0)+`
`).slice(0,-1)
Try it online!
Using split and map 116 bytes:
x=>x.split("re").map(y=>("-"[h='repeat'](r=x.length)+`
`)[h](y.length)).join(" "+"|"[h](r>1?r-2:0)+`
`).slice(0,-1)
Try it online!
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
3
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
2
You can save a byte by using a template string with${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using" "+"|".repeat(s>1?s-2:0)
.
– Ismael Miguel
19 hours ago
add a comment |
JavaScript ES6, 103 bytes
Using replace 103 bytes:
x=>x.replace(/o/g,"-".repeat(s=x.length)+`
`).replace(/re/g," "+"|".repeat(s>1?s-2:0)+`
`).slice(0,-1)
Try it online!
Using split and map 116 bytes:
x=>x.split("re").map(y=>("-"[h='repeat'](r=x.length)+`
`)[h](y.length)).join(" "+"|"[h](r>1?r-2:0)+`
`).slice(0,-1)
Try it online!
JavaScript ES6, 103 bytes
Using replace 103 bytes:
x=>x.replace(/o/g,"-".repeat(s=x.length)+`
`).replace(/re/g," "+"|".repeat(s>1?s-2:0)+`
`).slice(0,-1)
Try it online!
Using split and map 116 bytes:
x=>x.split("re").map(y=>("-"[h='repeat'](r=x.length)+`
`)[h](y.length)).join(" "+"|"[h](r>1?r-2:0)+`
`).slice(0,-1)
Try it online!
edited yesterday
answered yesterday
fəˈnɛtɪk
3,5731537
3,5731537
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
3
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
2
You can save a byte by using a template string with${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using" "+"|".repeat(s>1?s-2:0)
.
– Ismael Miguel
19 hours ago
add a comment |
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
3
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
2
You can save a byte by using a template string with${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using" "+"|".repeat(s>1?s-2:0)
.
– Ismael Miguel
19 hours ago
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
JS, nice! You reminded me that I was going to add a rule about not having line returns at the end of the output, I've added it. Sorry about that!
– GammaGames
yesterday
3
3
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
just removing the final newline is 12 bytes
– fəˈnɛtɪk
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
There was enough feedback that I removed the trailing newline rule. Feel free to update your entry.
– GammaGames
yesterday
2
2
You can save a byte by using a template string with
${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using " "+"|".repeat(s>1?s-2:0)
.– Ismael Miguel
19 hours ago
You can save a byte by using a template string with
${"|".repeat(s>1?s-2:0)}
and its whitespaces, instead of using " "+"|".repeat(s>1?s-2:0)
.– Ismael Miguel
19 hours ago
add a comment |
Retina, 21 bytes
r
L$`.
$.+*$&
bee
Try it online! Explanation:
r
Delete the r
s.
L$`.
$.+*$&
List each letter on its own line repeated to the length of the original input.
bee
Replace the first two ee
s on each line with a space.
add a comment |
Retina, 21 bytes
r
L$`.
$.+*$&
bee
Try it online! Explanation:
r
Delete the r
s.
L$`.
$.+*$&
List each letter on its own line repeated to the length of the original input.
bee
Replace the first two ee
s on each line with a space.
add a comment |
Retina, 21 bytes
r
L$`.
$.+*$&
bee
Try it online! Explanation:
r
Delete the r
s.
L$`.
$.+*$&
List each letter on its own line repeated to the length of the original input.
bee
Replace the first two ee
s on each line with a space.
Retina, 21 bytes
r
L$`.
$.+*$&
bee
Try it online! Explanation:
r
Delete the r
s.
L$`.
$.+*$&
List each letter on its own line repeated to the length of the original input.
bee
Replace the first two ee
s on each line with a space.
answered 16 hours ago
Neil
79.5k744177
79.5k744177
add a comment |
add a comment |
Charcoal, 19 bytes
Fθ≡ιo⟦⭆θ#⟧e«→P⁻Lθ²↙
Try it online! Link is to verbose version of code. Explanation:
Fθ
Loop through the characters of the input string.
≡ι
Switch on each character.
o⟦⭆θ#⟧
If it's an o
then print the input string replaced with #
s on its own line.
e«→P⁻Lθ²↙
If it's an e
then move right, print a line of -
s that's two less than the length of the input string, then move down and left.
add a comment |
Charcoal, 19 bytes
Fθ≡ιo⟦⭆θ#⟧e«→P⁻Lθ²↙
Try it online! Link is to verbose version of code. Explanation:
Fθ
Loop through the characters of the input string.
≡ι
Switch on each character.
o⟦⭆θ#⟧
If it's an o
then print the input string replaced with #
s on its own line.
e«→P⁻Lθ²↙
If it's an e
then move right, print a line of -
s that's two less than the length of the input string, then move down and left.
add a comment |
Charcoal, 19 bytes
Fθ≡ιo⟦⭆θ#⟧e«→P⁻Lθ²↙
Try it online! Link is to verbose version of code. Explanation:
Fθ
Loop through the characters of the input string.
≡ι
Switch on each character.
o⟦⭆θ#⟧
If it's an o
then print the input string replaced with #
s on its own line.
e«→P⁻Lθ²↙
If it's an e
then move right, print a line of -
s that's two less than the length of the input string, then move down and left.
Charcoal, 19 bytes
Fθ≡ιo⟦⭆θ#⟧e«→P⁻Lθ²↙
Try it online! Link is to verbose version of code. Explanation:
Fθ
Loop through the characters of the input string.
≡ι
Switch on each character.
o⟦⭆θ#⟧
If it's an o
then print the input string replaced with #
s on its own line.
e«→P⁻Lθ²↙
If it's an e
then move right, print a line of -
s that's two less than the length of the input string, then move down and left.
answered 16 hours ago
Neil
79.5k744177
79.5k744177
add a comment |
add a comment |
Powershell, 71 bytes
$l="$args"|% le*
switch($args|% t*y){'o'{'#'*$l}'r'{" $('%'*($l-2)) "}}
Less golfed test script:
$f = {
$l="$args"|% length
switch($args|% t*y){
'o'{'#'*$l}
'r'{" $('%'*($l-2)) "}
}
}
@(
,(
'oreo',
'####',
' %% ',
'####'
)
,(
'o',
'#'
)
,(
're',
' '
)
,(
'rere',
' %% ',
' %% '
)
,(
'oreoorererereoo',
'###############',
' %%%%%%%%%%%%% ',
'###############',
'###############',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
'###############',
'###############'
)
) | % {
$s,$expected = $_
$result = &$f $s
"$result"-eq"$expected"
# $result # uncomment this line to display a result
}
Output:
True
True
True
True
True
Looks like you don't need parens around the$args
69 bytes
– Veskah
5 hours ago
add a comment |
Powershell, 71 bytes
$l="$args"|% le*
switch($args|% t*y){'o'{'#'*$l}'r'{" $('%'*($l-2)) "}}
Less golfed test script:
$f = {
$l="$args"|% length
switch($args|% t*y){
'o'{'#'*$l}
'r'{" $('%'*($l-2)) "}
}
}
@(
,(
'oreo',
'####',
' %% ',
'####'
)
,(
'o',
'#'
)
,(
're',
' '
)
,(
'rere',
' %% ',
' %% '
)
,(
'oreoorererereoo',
'###############',
' %%%%%%%%%%%%% ',
'###############',
'###############',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
'###############',
'###############'
)
) | % {
$s,$expected = $_
$result = &$f $s
"$result"-eq"$expected"
# $result # uncomment this line to display a result
}
Output:
True
True
True
True
True
Looks like you don't need parens around the$args
69 bytes
– Veskah
5 hours ago
add a comment |
Powershell, 71 bytes
$l="$args"|% le*
switch($args|% t*y){'o'{'#'*$l}'r'{" $('%'*($l-2)) "}}
Less golfed test script:
$f = {
$l="$args"|% length
switch($args|% t*y){
'o'{'#'*$l}
'r'{" $('%'*($l-2)) "}
}
}
@(
,(
'oreo',
'####',
' %% ',
'####'
)
,(
'o',
'#'
)
,(
're',
' '
)
,(
'rere',
' %% ',
' %% '
)
,(
'oreoorererereoo',
'###############',
' %%%%%%%%%%%%% ',
'###############',
'###############',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
'###############',
'###############'
)
) | % {
$s,$expected = $_
$result = &$f $s
"$result"-eq"$expected"
# $result # uncomment this line to display a result
}
Output:
True
True
True
True
True
Powershell, 71 bytes
$l="$args"|% le*
switch($args|% t*y){'o'{'#'*$l}'r'{" $('%'*($l-2)) "}}
Less golfed test script:
$f = {
$l="$args"|% length
switch($args|% t*y){
'o'{'#'*$l}
'r'{" $('%'*($l-2)) "}
}
}
@(
,(
'oreo',
'####',
' %% ',
'####'
)
,(
'o',
'#'
)
,(
're',
' '
)
,(
'rere',
' %% ',
' %% '
)
,(
'oreoorererereoo',
'###############',
' %%%%%%%%%%%%% ',
'###############',
'###############',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
' %%%%%%%%%%%%% ',
'###############',
'###############'
)
) | % {
$s,$expected = $_
$result = &$f $s
"$result"-eq"$expected"
# $result # uncomment this line to display a result
}
Output:
True
True
True
True
True
answered 13 hours ago
mazzy
2,1751315
2,1751315
Looks like you don't need parens around the$args
69 bytes
– Veskah
5 hours ago
add a comment |
Looks like you don't need parens around the$args
69 bytes
– Veskah
5 hours ago
Looks like you don't need parens around the
$args
69 bytes– Veskah
5 hours ago
Looks like you don't need parens around the
$args
69 bytes– Veskah
5 hours ago
add a comment |
Python 3, 77 bytes
lambda x:x.replace("o","-"*len(x)+"n").replace("re"," "+'.'*(len(x)-2)+"n")
Try it online!
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
You can remove the space at+" n"
to save a byte.
– Kevin Cruijssen
18 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
add a comment |
Python 3, 77 bytes
lambda x:x.replace("o","-"*len(x)+"n").replace("re"," "+'.'*(len(x)-2)+"n")
Try it online!
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
You can remove the space at+" n"
to save a byte.
– Kevin Cruijssen
18 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
add a comment |
Python 3, 77 bytes
lambda x:x.replace("o","-"*len(x)+"n").replace("re"," "+'.'*(len(x)-2)+"n")
Try it online!
Python 3, 77 bytes
lambda x:x.replace("o","-"*len(x)+"n").replace("re"," "+'.'*(len(x)-2)+"n")
Try it online!
edited 7 hours ago
answered yesterday
Riker
5,96042767
5,96042767
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
You can remove the space at+" n"
to save a byte.
– Kevin Cruijssen
18 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
add a comment |
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
You can remove the space at+" n"
to save a byte.
– Kevin Cruijssen
18 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
Clever! I did intend the output to not be printing whitespace for the filling (it's pretty much oreo ascii), so I have edited the rules accordingly. Sorry about that! And I always love a python answer :)
– GammaGames
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
@JonathanFrech migth as well delete the comments, that approach was invalidated. I'll work on golfing more tomorrow.
– Riker
yesterday
You can remove the space at
+" n"
to save a byte.– Kevin Cruijssen
18 hours ago
You can remove the space at
+" n"
to save a byte.– Kevin Cruijssen
18 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
@KevinCruijssen can I? The input program says the whole cookie must be as wide as the input.
– Riker
13 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
I interpreted that as meaning that a trailing space is the same (visually) as no space. That's the beauty of answers to ascii art challenges. If they look right they are right :-)
– ElPedro
7 hours ago
add a comment |
Pepe, 364 bytes
Unfortunately the online interpreter does not take care of compressing comments, hence all o
characters will be replaced by a space.. Neither the spaces nor the o
are necessary, so this could be 295 bytes, but I like it more this way:
rEeEEeeEeEororEEoreoreeeEeeeeeorEEEEeoREeoreorEeEEeEEEEororEEoreorEEEEEoREeoreorEeEEEeeEeororEEoreoReoREoREEEeoREEEEEoreorEorEEEeorEEEEEoreEoREeoreoREEeoREEEEeEeeoREEEeoREeeEoREEEeoREEEEEEEorEEEeEorEEEeoREoREEEeoREEEEEoREEoReoreorEEEeEoREEEEEEeorEEEeoReEoREoREEEeoREEoReoroReEeoREoREEEeorEEEEeoReeoREEEeoREeeEoREEEeoREEEEEEEoreoReoReoREoREEEeoREEEEEoreeeeeEeEeoRee
Try it online!
Ungolfed
There might be some golfing oppurtunities with flags which I missed, but I'm done for now:
# "function" for 'e'
rEeEEeeEeE rrEE
re # remove duplicated argument
reeeEeeeee # print space
rEEEEe # decrement counter twice
REe re
# "function" for 'o'
rEeEEeEEEE rrEE
re # remove duplicated argument
rEEEEE # increment counter
REe re
# "function for 'r'
rEeEEEeeEe rrEE
re Re # remove duplicated argument & char
RE REEEe REEEEE # push 1
re rE rEEEe rEEEEE # replace 1
reE # goto 1
REe re
# Main
REEe REEEEeEee # read input & reverse
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
rEEEeE rEEEe # dummy loop-var (fucking do-whiles...)
RE REEEe REEEEE REE # while [label-1]
# Call the right procedure depending on current character,
# sets stacks up as follows:
# R [ .... *currentChar ]
# r [ (N-1) *count ]
Re re # pop 1 & loop-counter
rEEEeE # duplicate counter
REEEEEEe rEEEe # copy current char to other stack
ReE # jeq to 'o'-label or 'e'-label
# Output currentChar count times:
RE REEEe REE # while [label-0]:
Re # pop 0
rReEe # print character
RE REEEe # push 0
rEEEEe # decrement counter
Ree
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
re Re Re # pop 0, counter and 9((((currentChar
RE REEEe REEEEE # push 1
reeeeeEeEe # print new-line
Ree
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
add a comment |
Pepe, 364 bytes
Unfortunately the online interpreter does not take care of compressing comments, hence all o
characters will be replaced by a space.. Neither the spaces nor the o
are necessary, so this could be 295 bytes, but I like it more this way:
rEeEEeeEeEororEEoreoreeeEeeeeeorEEEEeoREeoreorEeEEeEEEEororEEoreorEEEEEoREeoreorEeEEEeeEeororEEoreoReoREoREEEeoREEEEEoreorEorEEEeorEEEEEoreEoREeoreoREEeoREEEEeEeeoREEEeoREeeEoREEEeoREEEEEEEorEEEeEorEEEeoREoREEEeoREEEEEoREEoReoreorEEEeEoREEEEEEeorEEEeoReEoREoREEEeoREEoReoroReEeoREoREEEeorEEEEeoReeoREEEeoREeeEoREEEeoREEEEEEEoreoReoReoREoREEEeoREEEEEoreeeeeEeEeoRee
Try it online!
Ungolfed
There might be some golfing oppurtunities with flags which I missed, but I'm done for now:
# "function" for 'e'
rEeEEeeEeE rrEE
re # remove duplicated argument
reeeEeeeee # print space
rEEEEe # decrement counter twice
REe re
# "function" for 'o'
rEeEEeEEEE rrEE
re # remove duplicated argument
rEEEEE # increment counter
REe re
# "function for 'r'
rEeEEEeeEe rrEE
re Re # remove duplicated argument & char
RE REEEe REEEEE # push 1
re rE rEEEe rEEEEE # replace 1
reE # goto 1
REe re
# Main
REEe REEEEeEee # read input & reverse
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
rEEEeE rEEEe # dummy loop-var (fucking do-whiles...)
RE REEEe REEEEE REE # while [label-1]
# Call the right procedure depending on current character,
# sets stacks up as follows:
# R [ .... *currentChar ]
# r [ (N-1) *count ]
Re re # pop 1 & loop-counter
rEEEeE # duplicate counter
REEEEEEe rEEEe # copy current char to other stack
ReE # jeq to 'o'-label or 'e'-label
# Output currentChar count times:
RE REEEe REE # while [label-0]:
Re # pop 0
rReEe # print character
RE REEEe # push 0
rEEEEe # decrement counter
Ree
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
re Re Re # pop 0, counter and 9((((currentChar
RE REEEe REEEEE # push 1
reeeeeEeEe # print new-line
Ree
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
add a comment |
Pepe, 364 bytes
Unfortunately the online interpreter does not take care of compressing comments, hence all o
characters will be replaced by a space.. Neither the spaces nor the o
are necessary, so this could be 295 bytes, but I like it more this way:
rEeEEeeEeEororEEoreoreeeEeeeeeorEEEEeoREeoreorEeEEeEEEEororEEoreorEEEEEoREeoreorEeEEEeeEeororEEoreoReoREoREEEeoREEEEEoreorEorEEEeorEEEEEoreEoREeoreoREEeoREEEEeEeeoREEEeoREeeEoREEEeoREEEEEEEorEEEeEorEEEeoREoREEEeoREEEEEoREEoReoreorEEEeEoREEEEEEeorEEEeoReEoREoREEEeoREEoReoroReEeoREoREEEeorEEEEeoReeoREEEeoREeeEoREEEeoREEEEEEEoreoReoReoREoREEEeoREEEEEoreeeeeEeEeoRee
Try it online!
Ungolfed
There might be some golfing oppurtunities with flags which I missed, but I'm done for now:
# "function" for 'e'
rEeEEeeEeE rrEE
re # remove duplicated argument
reeeEeeeee # print space
rEEEEe # decrement counter twice
REe re
# "function" for 'o'
rEeEEeEEEE rrEE
re # remove duplicated argument
rEEEEE # increment counter
REe re
# "function for 'r'
rEeEEEeeEe rrEE
re Re # remove duplicated argument & char
RE REEEe REEEEE # push 1
re rE rEEEe rEEEEE # replace 1
reE # goto 1
REe re
# Main
REEe REEEEeEee # read input & reverse
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
rEEEeE rEEEe # dummy loop-var (fucking do-whiles...)
RE REEEe REEEEE REE # while [label-1]
# Call the right procedure depending on current character,
# sets stacks up as follows:
# R [ .... *currentChar ]
# r [ (N-1) *count ]
Re re # pop 1 & loop-counter
rEEEeE # duplicate counter
REEEEEEe rEEEe # copy current char to other stack
ReE # jeq to 'o'-label or 'e'-label
# Output currentChar count times:
RE REEEe REE # while [label-0]:
Re # pop 0
rReEe # print character
RE REEEe # push 0
rEEEEe # decrement counter
Ree
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
re Re Re # pop 0, counter and 9((((currentChar
RE REEEe REEEEE # push 1
reeeeeEeEe # print new-line
Ree
Pepe, 364 bytes
Unfortunately the online interpreter does not take care of compressing comments, hence all o
characters will be replaced by a space.. Neither the spaces nor the o
are necessary, so this could be 295 bytes, but I like it more this way:
rEeEEeeEeEororEEoreoreeeEeeeeeorEEEEeoREeoreorEeEEeEEEEororEEoreorEEEEEoREeoreorEeEEEeeEeororEEoreoReoREoREEEeoREEEEEoreorEorEEEeorEEEEEoreEoREeoreoREEeoREEEEeEeeoREEEeoREeeEoREEEeoREEEEEEEorEEEeEorEEEeoREoREEEeoREEEEEoREEoReoreorEEEeEoREEEEEEeorEEEeoReEoREoREEEeoREEoReoroReEeoREoREEEeorEEEEeoReeoREEEeoREeeEoREEEeoREEEEEEEoreoReoReoREoREEEeoREEEEEoreeeeeEeEeoRee
Try it online!
Ungolfed
There might be some golfing oppurtunities with flags which I missed, but I'm done for now:
# "function" for 'e'
rEeEEeeEeE rrEE
re # remove duplicated argument
reeeEeeeee # print space
rEEEEe # decrement counter twice
REe re
# "function" for 'o'
rEeEEeEEEE rrEE
re # remove duplicated argument
rEEEEE # increment counter
REe re
# "function for 'r'
rEeEEEeeEe rrEE
re Re # remove duplicated argument & char
RE REEEe REEEEE # push 1
re rE rEEEe rEEEEE # replace 1
reE # goto 1
REe re
# Main
REEe REEEEeEee # read input & reverse
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
rEEEeE rEEEe # dummy loop-var (fucking do-whiles...)
RE REEEe REEEEE REE # while [label-1]
# Call the right procedure depending on current character,
# sets stacks up as follows:
# R [ .... *currentChar ]
# r [ (N-1) *count ]
Re re # pop 1 & loop-counter
rEEEeE # duplicate counter
REEEEEEe rEEEe # copy current char to other stack
ReE # jeq to 'o'-label or 'e'-label
# Output currentChar count times:
RE REEEe REE # while [label-0]:
Re # pop 0
rReEe # print character
RE REEEe # push 0
rEEEEe # decrement counter
Ree
REEEe REeeE REEEe REEEEEEE # push length-1 & move to r
re Re Re # pop 0, counter and 9((((currentChar
RE REEEe REEEEE # push 1
reeeeeEeEe # print new-line
Ree
answered 4 hours ago
BMO
11.6k22187
11.6k22187
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
add a comment |
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
I am impressed, that looks like an infuriating language to use. But if I use the input "re" it looks like it's dying somehow, my tab stops responding
– GammaGames
1 hour ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
Invalid, cream lines need a space after as well
– ASCII-only
22 mins ago
add a comment |
Dart, 120 106 bytes
f(s)=>s.replaceAll('o',''.padRight(s.length,'#')+'n').replaceAll('re',' '.padRight(s.length-1,'-')+'n');
Try it online!
add a comment |
Dart, 120 106 bytes
f(s)=>s.replaceAll('o',''.padRight(s.length,'#')+'n').replaceAll('re',' '.padRight(s.length-1,'-')+'n');
Try it online!
add a comment |
Dart, 120 106 bytes
f(s)=>s.replaceAll('o',''.padRight(s.length,'#')+'n').replaceAll('re',' '.padRight(s.length-1,'-')+'n');
Try it online!
Dart, 120 106 bytes
f(s)=>s.replaceAll('o',''.padRight(s.length,'#')+'n').replaceAll('re',' '.padRight(s.length-1,'-')+'n');
Try it online!
edited 21 hours ago
answered 21 hours ago
Elcan
31115
31115
add a comment |
add a comment |
C (gcc), 135 bytes
#define $ putchar
O(char*r){for(char*e,*o=r;*r;*++r&&$(10))if(*r-111){for($(32,r++),e=o+1;*++e;)$(42);$(32);}else for(e=o;*e++;)$(35);}
Try it online!
Shave off a few bytes with-D$=putchar
– Rogem
15 hours ago
add a comment |
C (gcc), 135 bytes
#define $ putchar
O(char*r){for(char*e,*o=r;*r;*++r&&$(10))if(*r-111){for($(32,r++),e=o+1;*++e;)$(42);$(32);}else for(e=o;*e++;)$(35);}
Try it online!
Shave off a few bytes with-D$=putchar
– Rogem
15 hours ago
add a comment |
C (gcc), 135 bytes
#define $ putchar
O(char*r){for(char*e,*o=r;*r;*++r&&$(10))if(*r-111){for($(32,r++),e=o+1;*++e;)$(42);$(32);}else for(e=o;*e++;)$(35);}
Try it online!
C (gcc), 135 bytes
#define $ putchar
O(char*r){for(char*e,*o=r;*r;*++r&&$(10))if(*r-111){for($(32,r++),e=o+1;*++e;)$(42);$(32);}else for(e=o;*e++;)$(35);}
Try it online!
edited 20 hours ago
answered yesterday
Jonathan Frech
6,19311040
6,19311040
Shave off a few bytes with-D$=putchar
– Rogem
15 hours ago
add a comment |
Shave off a few bytes with-D$=putchar
– Rogem
15 hours ago
Shave off a few bytes with
-D$=putchar
– Rogem
15 hours ago
Shave off a few bytes with
-D$=putchar
– Rogem
15 hours ago
add a comment |
Python 2, 77 76 72 bytes
lambda i:'n'.join((x*len(i),' '+x*(len(i)-2))[x>'o']for x in i if'e'<x)
Try it online!
The outer part of the cookie is 'o' and the filling is 'r'.
add a comment |
Python 2, 77 76 72 bytes
lambda i:'n'.join((x*len(i),' '+x*(len(i)-2))[x>'o']for x in i if'e'<x)
Try it online!
The outer part of the cookie is 'o' and the filling is 'r'.
add a comment |
Python 2, 77 76 72 bytes
lambda i:'n'.join((x*len(i),' '+x*(len(i)-2))[x>'o']for x in i if'e'<x)
Try it online!
The outer part of the cookie is 'o' and the filling is 'r'.
Python 2, 77 76 72 bytes
lambda i:'n'.join((x*len(i),' '+x*(len(i)-2))[x>'o']for x in i if'e'<x)
Try it online!
The outer part of the cookie is 'o' and the filling is 'r'.
edited 18 hours ago
answered 19 hours ago
ElPedro
3,4731023
3,4731023
add a comment |
add a comment |
JavaScript, 72 65 bytes
s=>s.replace(/o|re/g,([x,y])=>(y?`
`:`
`).padEnd(s.length+!y,x))
Try it online
add a comment |
JavaScript, 72 65 bytes
s=>s.replace(/o|re/g,([x,y])=>(y?`
`:`
`).padEnd(s.length+!y,x))
Try it online
add a comment |
JavaScript, 72 65 bytes
s=>s.replace(/o|re/g,([x,y])=>(y?`
`:`
`).padEnd(s.length+!y,x))
Try it online
JavaScript, 72 65 bytes
s=>s.replace(/o|re/g,([x,y])=>(y?`
`:`
`).padEnd(s.length+!y,x))
Try it online
edited 18 hours ago
answered 18 hours ago
Shaggy
19k21666
19k21666
add a comment |
add a comment |
Java 11, 110 bytes
s->{int l=s.length();return s.replace("re"," "+"~".repeat(l-(l<2?1:2))+"n").replace("o","=".repeat(l)+"n");}
Uses =
for the cookie and ~
for the filling.
Try it online.
Explanation:
s->{ // Method with String as both parameter and return-type
int l=s.length(); // Get the length of the input
return s // Return the input
.replace("re", // After we've replaced all "re" with:
" " // A space
+"~".repeat(l-(l<2?1:2))
// Appended with length-2 amount of "~"
// (or length-1 if the input-length was 1)
+"n") // Appended with a newline
.replace("o", // And we've also replaced all "o" with:
"=".repeat(l) // Length amount of "="
+"n");} // Appended with a newline
The above solution uses a replace. The following maps over the characters of the input instead:
Java 11, 113 112 bytes
s->s.chars().forEach(c->{if(c>101)System.out.println((c>111?" ":"")+(""+(char)c).repeat(s.length()-2*(~c&1)));})
-1 byte thanks to @Neil.
Try it online.
Explanation:
s-> // Method with String parameter and no return-type
s.chars().forEach(c->{ // Loop over the characters as codepoint-integers
if(c>101) // If it's not an 'e':
System.out.println( // Print with trailing newline:
(c>111? // If it's an 'r'
" " // Start with a space
: // Else (it's an 'o' instead)
"") // Start with an empty string
+(""+(char)c).repeat( // And append the character itself
.repeat( // Repeated the following amount of times:
s.length() // The input-length
-2*(~c&1)));}) // Minus 2 if it's an "r", or 0 if it's an "o"
1
Can you use~c&1
?
– Neil
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
add a comment |
Java 11, 110 bytes
s->{int l=s.length();return s.replace("re"," "+"~".repeat(l-(l<2?1:2))+"n").replace("o","=".repeat(l)+"n");}
Uses =
for the cookie and ~
for the filling.
Try it online.
Explanation:
s->{ // Method with String as both parameter and return-type
int l=s.length(); // Get the length of the input
return s // Return the input
.replace("re", // After we've replaced all "re" with:
" " // A space
+"~".repeat(l-(l<2?1:2))
// Appended with length-2 amount of "~"
// (or length-1 if the input-length was 1)
+"n") // Appended with a newline
.replace("o", // And we've also replaced all "o" with:
"=".repeat(l) // Length amount of "="
+"n");} // Appended with a newline
The above solution uses a replace. The following maps over the characters of the input instead:
Java 11, 113 112 bytes
s->s.chars().forEach(c->{if(c>101)System.out.println((c>111?" ":"")+(""+(char)c).repeat(s.length()-2*(~c&1)));})
-1 byte thanks to @Neil.
Try it online.
Explanation:
s-> // Method with String parameter and no return-type
s.chars().forEach(c->{ // Loop over the characters as codepoint-integers
if(c>101) // If it's not an 'e':
System.out.println( // Print with trailing newline:
(c>111? // If it's an 'r'
" " // Start with a space
: // Else (it's an 'o' instead)
"") // Start with an empty string
+(""+(char)c).repeat( // And append the character itself
.repeat( // Repeated the following amount of times:
s.length() // The input-length
-2*(~c&1)));}) // Minus 2 if it's an "r", or 0 if it's an "o"
1
Can you use~c&1
?
– Neil
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
add a comment |
Java 11, 110 bytes
s->{int l=s.length();return s.replace("re"," "+"~".repeat(l-(l<2?1:2))+"n").replace("o","=".repeat(l)+"n");}
Uses =
for the cookie and ~
for the filling.
Try it online.
Explanation:
s->{ // Method with String as both parameter and return-type
int l=s.length(); // Get the length of the input
return s // Return the input
.replace("re", // After we've replaced all "re" with:
" " // A space
+"~".repeat(l-(l<2?1:2))
// Appended with length-2 amount of "~"
// (or length-1 if the input-length was 1)
+"n") // Appended with a newline
.replace("o", // And we've also replaced all "o" with:
"=".repeat(l) // Length amount of "="
+"n");} // Appended with a newline
The above solution uses a replace. The following maps over the characters of the input instead:
Java 11, 113 112 bytes
s->s.chars().forEach(c->{if(c>101)System.out.println((c>111?" ":"")+(""+(char)c).repeat(s.length()-2*(~c&1)));})
-1 byte thanks to @Neil.
Try it online.
Explanation:
s-> // Method with String parameter and no return-type
s.chars().forEach(c->{ // Loop over the characters as codepoint-integers
if(c>101) // If it's not an 'e':
System.out.println( // Print with trailing newline:
(c>111? // If it's an 'r'
" " // Start with a space
: // Else (it's an 'o' instead)
"") // Start with an empty string
+(""+(char)c).repeat( // And append the character itself
.repeat( // Repeated the following amount of times:
s.length() // The input-length
-2*(~c&1)));}) // Minus 2 if it's an "r", or 0 if it's an "o"
Java 11, 110 bytes
s->{int l=s.length();return s.replace("re"," "+"~".repeat(l-(l<2?1:2))+"n").replace("o","=".repeat(l)+"n");}
Uses =
for the cookie and ~
for the filling.
Try it online.
Explanation:
s->{ // Method with String as both parameter and return-type
int l=s.length(); // Get the length of the input
return s // Return the input
.replace("re", // After we've replaced all "re" with:
" " // A space
+"~".repeat(l-(l<2?1:2))
// Appended with length-2 amount of "~"
// (or length-1 if the input-length was 1)
+"n") // Appended with a newline
.replace("o", // And we've also replaced all "o" with:
"=".repeat(l) // Length amount of "="
+"n");} // Appended with a newline
The above solution uses a replace. The following maps over the characters of the input instead:
Java 11, 113 112 bytes
s->s.chars().forEach(c->{if(c>101)System.out.println((c>111?" ":"")+(""+(char)c).repeat(s.length()-2*(~c&1)));})
-1 byte thanks to @Neil.
Try it online.
Explanation:
s-> // Method with String parameter and no return-type
s.chars().forEach(c->{ // Loop over the characters as codepoint-integers
if(c>101) // If it's not an 'e':
System.out.println( // Print with trailing newline:
(c>111? // If it's an 'r'
" " // Start with a space
: // Else (it's an 'o' instead)
"") // Start with an empty string
+(""+(char)c).repeat( // And append the character itself
.repeat( // Repeated the following amount of times:
s.length() // The input-length
-2*(~c&1)));}) // Minus 2 if it's an "r", or 0 if it's an "o"
edited 17 hours ago
answered 19 hours ago
Kevin Cruijssen
35.9k554188
35.9k554188
1
Can you use~c&1
?
– Neil
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
add a comment |
1
Can you use~c&1
?
– Neil
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
1
1
Can you use
~c&1
?– Neil
17 hours ago
Can you use
~c&1
?– Neil
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
@Neil I indeed can, thanks.
– Kevin Cruijssen
17 hours ago
add a comment |
Pyth, 33 bytes
::z"o"+*lz"="b"re"+.[lz*-lz2"░"db
:z"o" With the input, replace "o" with
*lz"=" "=" times the length of the input
+ b and a newline added to the end
: "re" With the input, replace "re" with
* "~" "~" times
-lz2 the length of the input minus 2
.[ d padded on both sides with " " to
lz the size of the input string
+ b and a newline added to the end
Try it here!
I really like python (it's what I wrote my original test scripts in), so I thought I'd do a pyth entry for fun :)
Edit: Here's a for loop, as well (35 bytes):
FNzIqN"o"*lzN)IqN"r".[lz*-lz2Nd
FNz For each value, N, in input
IqN"o" if the character is "o"
*lzN return the character times the length of the input
) end if
IqN"r" if the character is "r"
*-lz2N return the character times length - 2
.[lz d padded on both sides with " " to the input string
1
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both█
and░
are three bytes each. Or am I missing something here?
– Kevin Cruijssen
22 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character withN
, even saving a few bytes!
– GammaGames
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.
– Kevin Cruijssen
14 hours ago
add a comment |
Pyth, 33 bytes
::z"o"+*lz"="b"re"+.[lz*-lz2"░"db
:z"o" With the input, replace "o" with
*lz"=" "=" times the length of the input
+ b and a newline added to the end
: "re" With the input, replace "re" with
* "~" "~" times
-lz2 the length of the input minus 2
.[ d padded on both sides with " " to
lz the size of the input string
+ b and a newline added to the end
Try it here!
I really like python (it's what I wrote my original test scripts in), so I thought I'd do a pyth entry for fun :)
Edit: Here's a for loop, as well (35 bytes):
FNzIqN"o"*lzN)IqN"r".[lz*-lz2Nd
FNz For each value, N, in input
IqN"o" if the character is "o"
*lzN return the character times the length of the input
) end if
IqN"r" if the character is "r"
*-lz2N return the character times length - 2
.[lz d padded on both sides with " " to the input string
1
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both█
and░
are three bytes each. Or am I missing something here?
– Kevin Cruijssen
22 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character withN
, even saving a few bytes!
– GammaGames
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.
– Kevin Cruijssen
14 hours ago
add a comment |
Pyth, 33 bytes
::z"o"+*lz"="b"re"+.[lz*-lz2"░"db
:z"o" With the input, replace "o" with
*lz"=" "=" times the length of the input
+ b and a newline added to the end
: "re" With the input, replace "re" with
* "~" "~" times
-lz2 the length of the input minus 2
.[ d padded on both sides with " " to
lz the size of the input string
+ b and a newline added to the end
Try it here!
I really like python (it's what I wrote my original test scripts in), so I thought I'd do a pyth entry for fun :)
Edit: Here's a for loop, as well (35 bytes):
FNzIqN"o"*lzN)IqN"r".[lz*-lz2Nd
FNz For each value, N, in input
IqN"o" if the character is "o"
*lzN return the character times the length of the input
) end if
IqN"r" if the character is "r"
*-lz2N return the character times length - 2
.[lz d padded on both sides with " " to the input string
Pyth, 33 bytes
::z"o"+*lz"="b"re"+.[lz*-lz2"░"db
:z"o" With the input, replace "o" with
*lz"=" "=" times the length of the input
+ b and a newline added to the end
: "re" With the input, replace "re" with
* "~" "~" times
-lz2 the length of the input minus 2
.[ d padded on both sides with " " to
lz the size of the input string
+ b and a newline added to the end
Try it here!
I really like python (it's what I wrote my original test scripts in), so I thought I'd do a pyth entry for fun :)
Edit: Here's a for loop, as well (35 bytes):
FNzIqN"o"*lzN)IqN"r".[lz*-lz2Nd
FNz For each value, N, in input
IqN"o" if the character is "o"
*lzN return the character times the length of the input
) end if
IqN"r" if the character is "r"
*-lz2N return the character times length - 2
.[lz d padded on both sides with " " to the input string
edited 14 hours ago
answered 23 hours ago
GammaGames
465211
465211
1
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both█
and░
are three bytes each. Or am I missing something here?
– Kevin Cruijssen
22 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character withN
, even saving a few bytes!
– GammaGames
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.
– Kevin Cruijssen
14 hours ago
add a comment |
1
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both█
and░
are three bytes each. Or am I missing something here?
– Kevin Cruijssen
22 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character withN
, even saving a few bytes!
– GammaGames
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.
– Kevin Cruijssen
14 hours ago
1
1
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both
█
and ░
are three bytes each. Or am I missing something here?– Kevin Cruijssen
22 hours ago
Isn't this 37 bytes? I thought Pyth uses default ASCII as its codepage just like Python, if I remember correctly. So even though your code is 33 characters, both
█
and ░
are three bytes each. Or am I missing something here?– Kevin Cruijssen
22 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character with
N
, even saving a few bytes!– GammaGames
14 hours ago
Good call, I didn't realize that (I couldn't get pyth to work on tio.run, so I used the length counter on the herokuapp page). In the for loop I could just replace the character with
N
, even saving a few bytes!– GammaGames
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state
33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.– Kevin Cruijssen
14 hours ago
Thought something like that happened. :) I once had the same issue with a 05AB1E answer of mine that was using characters outside its code page. Unfortunately TIO displays chars and bytes the same for most golfing languages. For Java or Python TIO will correctly state
33 chars, 37 bytes
, but not in golfing languages on TIO. But in your solutions just changing those characters indeed fixes the issue, so it's not that big of a deal here.– Kevin Cruijssen
14 hours ago
add a comment |
C# (.NET Core), 143 bytes
Without LINQ.
p=>{var q="";foreach(char c in p){if(c!='e'){for(var j=0;j<p.Length;j++)q+=(j<1|j>p.Length-2)&c>'q'?" ":c<'p'?"█":"░";q+="n";}}return q;};
Try it online!
add a comment |
C# (.NET Core), 143 bytes
Without LINQ.
p=>{var q="";foreach(char c in p){if(c!='e'){for(var j=0;j<p.Length;j++)q+=(j<1|j>p.Length-2)&c>'q'?" ":c<'p'?"█":"░";q+="n";}}return q;};
Try it online!
add a comment |
C# (.NET Core), 143 bytes
Without LINQ.
p=>{var q="";foreach(char c in p){if(c!='e'){for(var j=0;j<p.Length;j++)q+=(j<1|j>p.Length-2)&c>'q'?" ":c<'p'?"█":"░";q+="n";}}return q;};
Try it online!
C# (.NET Core), 143 bytes
Without LINQ.
p=>{var q="";foreach(char c in p){if(c!='e'){for(var j=0;j<p.Length;j++)q+=(j<1|j>p.Length-2)&c>'q'?" ":c<'p'?"█":"░";q+="n";}}return q;};
Try it online!
answered 12 hours ago
Destroigo
813
813
add a comment |
add a comment |
Perl 5 -p
, 47 bytes
s|o|X x($i=y///c).$/|ge;s|re|$".O x($i-2).$/|ge
Try it online!
add a comment |
Perl 5 -p
, 47 bytes
s|o|X x($i=y///c).$/|ge;s|re|$".O x($i-2).$/|ge
Try it online!
add a comment |
Perl 5 -p
, 47 bytes
s|o|X x($i=y///c).$/|ge;s|re|$".O x($i-2).$/|ge
Try it online!
Perl 5 -p
, 47 bytes
s|o|X x($i=y///c).$/|ge;s|re|$".O x($i-2).$/|ge
Try it online!
answered 13 hours ago
Xcali
5,188520
5,188520
add a comment |
add a comment |
SNOBOL4 (CSNOBOL4), 136 bytes
S =INPUT
N =SIZE(S)
S S ('o' | 're') . X REM . S :F(END)
OUTPUT =IDENT('o',X) DUPL(X,N) :S(S)
OUTPUT =' ' DUPL(0,N - 2) ' ' :(S)
END
Try it online!
add a comment |
SNOBOL4 (CSNOBOL4), 136 bytes
S =INPUT
N =SIZE(S)
S S ('o' | 're') . X REM . S :F(END)
OUTPUT =IDENT('o',X) DUPL(X,N) :S(S)
OUTPUT =' ' DUPL(0,N - 2) ' ' :(S)
END
Try it online!
add a comment |
SNOBOL4 (CSNOBOL4), 136 bytes
S =INPUT
N =SIZE(S)
S S ('o' | 're') . X REM . S :F(END)
OUTPUT =IDENT('o',X) DUPL(X,N) :S(S)
OUTPUT =' ' DUPL(0,N - 2) ' ' :(S)
END
Try it online!
SNOBOL4 (CSNOBOL4), 136 bytes
S =INPUT
N =SIZE(S)
S S ('o' | 're') . X REM . S :F(END)
OUTPUT =IDENT('o',X) DUPL(X,N) :S(S)
OUTPUT =' ' DUPL(0,N - 2) ' ' :(S)
END
Try it online!
answered 6 hours ago
Giuseppe
16.6k31052
16.6k31052
add a comment |
add a comment |
PHP, 99 bytes
$l=strlen($i=$argv[1]);$r=str_repeat;echo strtr($i,[o=>$r('#',$l)."n",re=>' '.$r('=',$l-2)."n"]);
Try it online!
OUCH. PHP's waaaay_too_long function names strike again!
Output:
$php oreo.php oreo
####
==
####
$php oreo.php o
#
$php oreo.php rere
==
==
$ php oreo.php oreoorererereoo
###############
=============
###############
###############
=============
=============
=============
=============
###############
###############
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
add a comment |
PHP, 99 bytes
$l=strlen($i=$argv[1]);$r=str_repeat;echo strtr($i,[o=>$r('#',$l)."n",re=>' '.$r('=',$l-2)."n"]);
Try it online!
OUCH. PHP's waaaay_too_long function names strike again!
Output:
$php oreo.php oreo
####
==
####
$php oreo.php o
#
$php oreo.php rere
==
==
$ php oreo.php oreoorererereoo
###############
=============
###############
###############
=============
=============
=============
=============
###############
###############
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
add a comment |
PHP, 99 bytes
$l=strlen($i=$argv[1]);$r=str_repeat;echo strtr($i,[o=>$r('#',$l)."n",re=>' '.$r('=',$l-2)."n"]);
Try it online!
OUCH. PHP's waaaay_too_long function names strike again!
Output:
$php oreo.php oreo
####
==
####
$php oreo.php o
#
$php oreo.php rere
==
==
$ php oreo.php oreoorererereoo
###############
=============
###############
###############
=============
=============
=============
=============
###############
###############
PHP, 99 bytes
$l=strlen($i=$argv[1]);$r=str_repeat;echo strtr($i,[o=>$r('#',$l)."n",re=>' '.$r('=',$l-2)."n"]);
Try it online!
OUCH. PHP's waaaay_too_long function names strike again!
Output:
$php oreo.php oreo
####
==
####
$php oreo.php o
#
$php oreo.php rere
==
==
$ php oreo.php oreoorererereoo
###############
=============
###############
###############
=============
=============
=============
=============
###############
###############
answered 5 hours ago
gwaugh
513
513
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
add a comment |
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
Invalid, cream lines need a trailing space
– ASCII-only
23 mins ago
add a comment |
Batch, 133 bytes
@set/ps=
@set o=%s:r=o%
@set o=%o:e=o%
@set r=%o:o=-%
@set r= %r:~2%
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Takes input on STDIN. Explanation:
@set/ps=
Input the string.
@set o=%s:r=o%
@set o=%o:e=o%
Make a copy of the string with all of the r
s and e
s replaced with o
s.
@set r=%o:o=-%
@set r= %r:~2%
Make a copy of the string of o
s, change them to -
s and replace the first two with a space.
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Change the e
s into spaces and also add a space after each o
, allowing the o
s and r
s to be iterated over, printing the appropriate string each time.
add a comment |
Batch, 133 bytes
@set/ps=
@set o=%s:r=o%
@set o=%o:e=o%
@set r=%o:o=-%
@set r= %r:~2%
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Takes input on STDIN. Explanation:
@set/ps=
Input the string.
@set o=%s:r=o%
@set o=%o:e=o%
Make a copy of the string with all of the r
s and e
s replaced with o
s.
@set r=%o:o=-%
@set r= %r:~2%
Make a copy of the string of o
s, change them to -
s and replace the first two with a space.
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Change the e
s into spaces and also add a space after each o
, allowing the o
s and r
s to be iterated over, printing the appropriate string each time.
add a comment |
Batch, 133 bytes
@set/ps=
@set o=%s:r=o%
@set o=%o:e=o%
@set r=%o:o=-%
@set r= %r:~2%
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Takes input on STDIN. Explanation:
@set/ps=
Input the string.
@set o=%s:r=o%
@set o=%o:e=o%
Make a copy of the string with all of the r
s and e
s replaced with o
s.
@set r=%o:o=-%
@set r= %r:~2%
Make a copy of the string of o
s, change them to -
s and replace the first two with a space.
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Change the e
s into spaces and also add a space after each o
, allowing the o
s and r
s to be iterated over, printing the appropriate string each time.
Batch, 133 bytes
@set/ps=
@set o=%s:r=o%
@set o=%o:e=o%
@set r=%o:o=-%
@set r= %r:~2%
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Takes input on STDIN. Explanation:
@set/ps=
Input the string.
@set o=%s:r=o%
@set o=%o:e=o%
Make a copy of the string with all of the r
s and e
s replaced with o
s.
@set r=%o:o=-%
@set r= %r:~2%
Make a copy of the string of o
s, change them to -
s and replace the first two with a space.
@set s=%s:e= %
@for %%c in (%s:o=o %)do @call echo %%%%c%%
Change the e
s into spaces and also add a space after each o
, allowing the o
s and r
s to be iterated over, printing the appropriate string each time.
answered 4 hours ago
Neil
79.5k744177
79.5k744177
add a comment |
add a comment |
Mathematica, 111 bytes
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
You can try it by going to https://develop.open.wolframcloud.com/app/ and clicking "Create a new notebook" and entering code like the following and then hitting Shift+Enter.
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&@"ooreoreore"
This code is not very fancy but it seems too expensive to convert away from strings and then back or to do anything else clever. In particular, with only 3-4 commands that have the name String, we don't save bytes at all by trying to abstract that away. For example, the following is 129 bytes:
(w=Symbol["String"<>#]&;z=w@"Repeat";n=w["Length"]@#;#~w@"Replace"~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
add a comment |
Mathematica, 111 bytes
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
You can try it by going to https://develop.open.wolframcloud.com/app/ and clicking "Create a new notebook" and entering code like the following and then hitting Shift+Enter.
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&@"ooreoreore"
This code is not very fancy but it seems too expensive to convert away from strings and then back or to do anything else clever. In particular, with only 3-4 commands that have the name String, we don't save bytes at all by trying to abstract that away. For example, the following is 129 bytes:
(w=Symbol["String"<>#]&;z=w@"Repeat";n=w["Length"]@#;#~w@"Replace"~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
add a comment |
Mathematica, 111 bytes
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
You can try it by going to https://develop.open.wolframcloud.com/app/ and clicking "Create a new notebook" and entering code like the following and then hitting Shift+Enter.
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&@"ooreoreore"
This code is not very fancy but it seems too expensive to convert away from strings and then back or to do anything else clever. In particular, with only 3-4 commands that have the name String, we don't save bytes at all by trying to abstract that away. For example, the following is 129 bytes:
(w=Symbol["String"<>#]&;z=w@"Repeat";n=w["Length"]@#;#~w@"Replace"~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
Mathematica, 111 bytes
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
You can try it by going to https://develop.open.wolframcloud.com/app/ and clicking "Create a new notebook" and entering code like the following and then hitting Shift+Enter.
(z=StringRepeat;n=StringLength@#;#~StringReplace~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&@"ooreoreore"
This code is not very fancy but it seems too expensive to convert away from strings and then back or to do anything else clever. In particular, with only 3-4 commands that have the name String, we don't save bytes at all by trying to abstract that away. For example, the following is 129 bytes:
(w=Symbol["String"<>#]&;z=w@"Repeat";n=w["Length"]@#;#~w@"Replace"~{"o"->"O"~z~n<>"n","re"->" "<>If[n>2,z["R",n-2],""]<>" n"})&
answered 3 hours ago
Mark S.
21117
21117
add a comment |
add a comment |
CJam, 27 bytes
q:T'e-{i2%T,'9*_:)2>S+?N}/
Try it online!
Explanation:
q read input: | "oreoo"
:T store in variable T | "oreoo", T="oreoo"
'e- remove all 'e' characters: | "oroo"
{ }/ for each character: | 'o
i get Unicode value: | 79
2% modulo 2: | 1
T push original input: | 1 "oreoo"
, get length: | 1 5
'9* repeat '9' that many times: | 1 "99999"
_ duplicate: | 1 "99999" "99999"
:) increment every character: | 1 "99999" ":::::"
2> remove first two characters: | 1 "99999" ":::"
S+ prepend a space: | 1 "99999" " :::"
? conditional: | "99999"
N add a newline: | "99999" N
(implicit output) | "99999" N " :::" N "99999" N "99999" N
add a comment |
CJam, 27 bytes
q:T'e-{i2%T,'9*_:)2>S+?N}/
Try it online!
Explanation:
q read input: | "oreoo"
:T store in variable T | "oreoo", T="oreoo"
'e- remove all 'e' characters: | "oroo"
{ }/ for each character: | 'o
i get Unicode value: | 79
2% modulo 2: | 1
T push original input: | 1 "oreoo"
, get length: | 1 5
'9* repeat '9' that many times: | 1 "99999"
_ duplicate: | 1 "99999" "99999"
:) increment every character: | 1 "99999" ":::::"
2> remove first two characters: | 1 "99999" ":::"
S+ prepend a space: | 1 "99999" " :::"
? conditional: | "99999"
N add a newline: | "99999" N
(implicit output) | "99999" N " :::" N "99999" N "99999" N
add a comment |
CJam, 27 bytes
q:T'e-{i2%T,'9*_:)2>S+?N}/
Try it online!
Explanation:
q read input: | "oreoo"
:T store in variable T | "oreoo", T="oreoo"
'e- remove all 'e' characters: | "oroo"
{ }/ for each character: | 'o
i get Unicode value: | 79
2% modulo 2: | 1
T push original input: | 1 "oreoo"
, get length: | 1 5
'9* repeat '9' that many times: | 1 "99999"
_ duplicate: | 1 "99999" "99999"
:) increment every character: | 1 "99999" ":::::"
2> remove first two characters: | 1 "99999" ":::"
S+ prepend a space: | 1 "99999" " :::"
? conditional: | "99999"
N add a newline: | "99999" N
(implicit output) | "99999" N " :::" N "99999" N "99999" N
CJam, 27 bytes
q:T'e-{i2%T,'9*_:)2>S+?N}/
Try it online!
Explanation:
q read input: | "oreoo"
:T store in variable T | "oreoo", T="oreoo"
'e- remove all 'e' characters: | "oroo"
{ }/ for each character: | 'o
i get Unicode value: | 79
2% modulo 2: | 1
T push original input: | 1 "oreoo"
, get length: | 1 5
'9* repeat '9' that many times: | 1 "99999"
_ duplicate: | 1 "99999" "99999"
:) increment every character: | 1 "99999" ":::::"
2> remove first two characters: | 1 "99999" ":::"
S+ prepend a space: | 1 "99999" " :::"
? conditional: | "99999"
N add a newline: | "99999" N
(implicit output) | "99999" N " :::" N "99999" N "99999" N
answered 3 hours ago
Esolanging Fruit
8,22432674
8,22432674
add a comment |
add a comment |
C# (Visual C# Interactive Compiler), 71 bytes
s=>s.Aggregate("",(a,c)=>a+(c>111?" ":"n".PadLeft(s.Length+c/5-21,c)))
Try it online!
Borrowed some ideas from on Embodiment of Ignorance's answer for sure.
-6 bytes thanks to @ASCIIOnly!
The overall concept is to compute a string aggregate over the input characters following these rules:
- If an
r
is encountered, append a single spacecharacter for indentation. We know the next character will be an
e
. - If an
o
or ane
is encountered, generate a string by repeating the current character a specific number of times and prepending it to a newline. The number of times to repeat is determined by length of input string and whether the current line is indented. - The
PadLeft
function is used to generate the repeating character string.
The result is the concatenation of all of these strings.
1
71
– ASCII-only
4 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
85?
– ASCII-only
25 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 mins ago
add a comment |
C# (Visual C# Interactive Compiler), 71 bytes
s=>s.Aggregate("",(a,c)=>a+(c>111?" ":"n".PadLeft(s.Length+c/5-21,c)))
Try it online!
Borrowed some ideas from on Embodiment of Ignorance's answer for sure.
-6 bytes thanks to @ASCIIOnly!
The overall concept is to compute a string aggregate over the input characters following these rules:
- If an
r
is encountered, append a single spacecharacter for indentation. We know the next character will be an
e
. - If an
o
or ane
is encountered, generate a string by repeating the current character a specific number of times and prepending it to a newline. The number of times to repeat is determined by length of input string and whether the current line is indented. - The
PadLeft
function is used to generate the repeating character string.
The result is the concatenation of all of these strings.
1
71
– ASCII-only
4 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
85?
– ASCII-only
25 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 mins ago
add a comment |
C# (Visual C# Interactive Compiler), 71 bytes
s=>s.Aggregate("",(a,c)=>a+(c>111?" ":"n".PadLeft(s.Length+c/5-21,c)))
Try it online!
Borrowed some ideas from on Embodiment of Ignorance's answer for sure.
-6 bytes thanks to @ASCIIOnly!
The overall concept is to compute a string aggregate over the input characters following these rules:
- If an
r
is encountered, append a single spacecharacter for indentation. We know the next character will be an
e
. - If an
o
or ane
is encountered, generate a string by repeating the current character a specific number of times and prepending it to a newline. The number of times to repeat is determined by length of input string and whether the current line is indented. - The
PadLeft
function is used to generate the repeating character string.
The result is the concatenation of all of these strings.
C# (Visual C# Interactive Compiler), 71 bytes
s=>s.Aggregate("",(a,c)=>a+(c>111?" ":"n".PadLeft(s.Length+c/5-21,c)))
Try it online!
Borrowed some ideas from on Embodiment of Ignorance's answer for sure.
-6 bytes thanks to @ASCIIOnly!
The overall concept is to compute a string aggregate over the input characters following these rules:
- If an
r
is encountered, append a single spacecharacter for indentation. We know the next character will be an
e
. - If an
o
or ane
is encountered, generate a string by repeating the current character a specific number of times and prepending it to a newline. The number of times to repeat is determined by length of input string and whether the current line is indented. - The
PadLeft
function is used to generate the repeating character string.
The result is the concatenation of all of these strings.
edited 3 hours ago
answered 6 hours ago
dana
49135
49135
1
71
– ASCII-only
4 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
85?
– ASCII-only
25 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 mins ago
add a comment |
1
71
– ASCII-only
4 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
85?
– ASCII-only
25 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 mins ago
1
1
71
– ASCII-only
4 hours ago
71
– ASCII-only
4 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
@ASCIIOnly - Thanks :)
– dana
3 hours ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
> The whitespace padding on each side of the filling is required
– ASCII-only
29 mins ago
85?
– ASCII-only
25 mins ago
85?
– ASCII-only
25 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 mins ago
I didn't notice that :) Although, in reviewing the posted answers about 1/2 have done this incorrectly as well. Good catch though!
– dana
18 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).
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
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%2f178344%2foreoorererereoo%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');
});
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');
});
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');
});
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
Is it correct to assume you will not be given the empty string?
– fəˈnɛtɪk
yesterday
1
Will the string only contain "re" and "o"?
– Embodiment of Ignorance
yesterday
1
Yes, I apologize if it's not clear enough in the rules
– GammaGames
yesterday
1
Can we have a trailing newline after the output? That's the default for printing in most languages. Like this.
– Riker
yesterday
1
@GammaGames Hm, ok. Generally consensus is that returning a list of strings is ok I believe, but I'll edit my answer.
– Riker
yesterday