ASCII Art Octagons
up vote
20
down vote
favorite
Given an input integer n > 1
, output an ASCII-art octagon with side lengths composed of n
characters. See examples below:
n=2
##
# #
# #
##
n=3
###
# #
# #
# #
# #
# #
###
n=4
####
# #
# #
# #
# #
# #
# #
# #
# #
####
n=5
#####
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
#####
and so on.
You can print it to STDOUT or return it as a function result.
Any amount of extraneous whitespace is acceptable, so long as the characters line up appropriately.
Rules and I/O
- Input and output can be given by any convenient method.
- You can use any printable ASCII character instead of the
#
(except space), but the "background" character must be space (ASCII 32). - Either a full program or a function are acceptable.
Standard loopholes are forbidden.- This is code-golf so all usual golfing rules apply, and the shortest code (in bytes) wins.
code-golf ascii-art
add a comment |
up vote
20
down vote
favorite
Given an input integer n > 1
, output an ASCII-art octagon with side lengths composed of n
characters. See examples below:
n=2
##
# #
# #
##
n=3
###
# #
# #
# #
# #
# #
###
n=4
####
# #
# #
# #
# #
# #
# #
# #
# #
####
n=5
#####
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
#####
and so on.
You can print it to STDOUT or return it as a function result.
Any amount of extraneous whitespace is acceptable, so long as the characters line up appropriately.
Rules and I/O
- Input and output can be given by any convenient method.
- You can use any printable ASCII character instead of the
#
(except space), but the "background" character must be space (ASCII 32). - Either a full program or a function are acceptable.
Standard loopholes are forbidden.- This is code-golf so all usual golfing rules apply, and the shortest code (in bytes) wins.
code-golf ascii-art
1
Can we use different output characters, or does it need to be consistent?
– Emigna
Nov 6 at 18:13
@Emigna Different characters are fine.
– AdmBorkBork
Nov 6 at 18:26
1
Quite related.
– Charlie
Nov 7 at 11:06
add a comment |
up vote
20
down vote
favorite
up vote
20
down vote
favorite
Given an input integer n > 1
, output an ASCII-art octagon with side lengths composed of n
characters. See examples below:
n=2
##
# #
# #
##
n=3
###
# #
# #
# #
# #
# #
###
n=4
####
# #
# #
# #
# #
# #
# #
# #
# #
####
n=5
#####
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
#####
and so on.
You can print it to STDOUT or return it as a function result.
Any amount of extraneous whitespace is acceptable, so long as the characters line up appropriately.
Rules and I/O
- Input and output can be given by any convenient method.
- You can use any printable ASCII character instead of the
#
(except space), but the "background" character must be space (ASCII 32). - Either a full program or a function are acceptable.
Standard loopholes are forbidden.- This is code-golf so all usual golfing rules apply, and the shortest code (in bytes) wins.
code-golf ascii-art
Given an input integer n > 1
, output an ASCII-art octagon with side lengths composed of n
characters. See examples below:
n=2
##
# #
# #
##
n=3
###
# #
# #
# #
# #
# #
###
n=4
####
# #
# #
# #
# #
# #
# #
# #
# #
####
n=5
#####
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
# #
#####
and so on.
You can print it to STDOUT or return it as a function result.
Any amount of extraneous whitespace is acceptable, so long as the characters line up appropriately.
Rules and I/O
- Input and output can be given by any convenient method.
- You can use any printable ASCII character instead of the
#
(except space), but the "background" character must be space (ASCII 32). - Either a full program or a function are acceptable.
Standard loopholes are forbidden.- This is code-golf so all usual golfing rules apply, and the shortest code (in bytes) wins.
code-golf ascii-art
code-golf ascii-art
edited Nov 6 at 17:55
asked Nov 6 at 17:50
AdmBorkBork
25.4k362223
25.4k362223
1
Can we use different output characters, or does it need to be consistent?
– Emigna
Nov 6 at 18:13
@Emigna Different characters are fine.
– AdmBorkBork
Nov 6 at 18:26
1
Quite related.
– Charlie
Nov 7 at 11:06
add a comment |
1
Can we use different output characters, or does it need to be consistent?
– Emigna
Nov 6 at 18:13
@Emigna Different characters are fine.
– AdmBorkBork
Nov 6 at 18:26
1
Quite related.
– Charlie
Nov 7 at 11:06
1
1
Can we use different output characters, or does it need to be consistent?
– Emigna
Nov 6 at 18:13
Can we use different output characters, or does it need to be consistent?
– Emigna
Nov 6 at 18:13
@Emigna Different characters are fine.
– AdmBorkBork
Nov 6 at 18:26
@Emigna Different characters are fine.
– AdmBorkBork
Nov 6 at 18:26
1
1
Quite related.
– Charlie
Nov 7 at 11:06
Quite related.
– Charlie
Nov 7 at 11:06
add a comment |
18 Answers
18
active
oldest
votes
up vote
19
down vote
05AB1E, 3 bytes
7ÝΛ
Try it online!
Explanation
# implicit input as length
# implicit input as string to print
7Ý # range [0...7] as directions
Λ # canvas print
See this answer to understand the 05AB1E canvas.
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
3
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
add a comment |
up vote
10
down vote
JavaScript (ES6), 114 106 105 104 103 bytes
n=>(g=x=>v=x*2>w?w-x:x,F=x=>~y?`#
`[~x?(h=g(x--))*g(y)>0&h+v!=n|n>h+v:(y--,x=w,2)]+F(x):'')(y=w=--n*3)
Try it online!
How?
This builds the output character by character.
Given the input $n$, we compute:
$$n'=n-1\w=3n'$$
For each character at $(x,y)$, we compute $(h,v)$:
$$h=w/2-left|x-w/2right|\v=w/2-left|y-w/2right|$$
The cells belonging to the octagon satisfy one of the following conditions:
- ($h=0$ OR $v=0$) AND $h+vge n'$ (in red below)
$h+v=n'$ (in orange below)
For example, with $n=4$ (and $n'=3$):
$$begin{matrix}(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)end{matrix}
$$
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
1
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
add a comment |
up vote
6
down vote
Charcoal, 5 bytes
GH*N#
My first answer with Charcoal!
Explanation:
GH*N# //Full program
GH //Draw a hollow polygon
* //with 8 sides
N //of side length from input
# //using '#' character
Try it online!
2
For those who prefer verbose Charcoal, that'sPolygonHollow(:*, InputNumber(), "#");
.
– Neil
Nov 6 at 18:51
add a comment |
up vote
4
down vote
Canvas, 15 14 12 bytes
/⁸⇵╷+×+:⤢n╬┼
Try it here!
Explanation:
/ a diagonal of length n
⁸ the input,
⇵ ceiling divided by 2, (storing the remainder)
╷ minus one
#× repeat "#" that many times
+ append that to the diagonal
:⤢n overlap that with its transpose
╬┼ quad-palindromize with the overlap being the remainder stored earlier
Alternative 12-byter.
add a comment |
up vote
4
down vote
R, 122 117 115 bytes
function(n){n=n-1
m=matrix(0,y<-3*n+1,y)
v=t(h<-(w=3*n/2)-abs(row(m)-1-w))
m[h*v&h+v-n|h+v<n]=' '
write(m,1,y,,"")}
Try it online!
Ports the logic from Arnauld's answer, specifically this revision in case there are further improvements. Another 2 bytes saved thanks to Arnauld's suggestion of inverting the logic!
-2 bytes by doing it the other way around (I can't doh*v&h+v-n
in JS because&
is a bitwise operator; but it's a logical one in R, so that works).
– Arnauld
Nov 7 at 15:05
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
add a comment |
up vote
3
down vote
Python 2, 96 bytes
a=b=n=input()
while a>2-n-n:a-=1;b-=a/~-n+1;s=(-~b*' '+'#').ljust(n);print s+s[-1]*(n-2)+s[::-1]
Try it online!
add a comment |
up vote
3
down vote
Python 2, 81 bytes
a=d=n=input()-1
while a<=n:print' '*a+'#'+' #'[a==n]*(3*n-a+~a)+'#';d-=1;a-=d/n+1
Try it online!
Python 2, 75 bytes
a=d=n=input()-1
while a<=n:print' '*a+`' `'[a==n]*(3*n-a+~a)`;d-=1;a-=d/n+1
Try it online!
If mixing output characters is OK.
add a comment |
up vote
3
down vote
Powershell, 91 bytes
param($n)($s=' '*--$n+'#'*$n+'#')
--$n..0+,0*$n+0..$n|%{' '*$_+"#$(' '*(3*$n-2*$_+2))#"}
$s
add a comment |
up vote
2
down vote
PowerShell, 107 97 bytes
param($n)($z=$n-1)..1+,0*$n+1..$z|%{" "*$_+"#"+($x=" "*($z-$_))+(" ","#")[!($_-$z)]*($n-2)+"$x#"}
Try it online!
If there was a cheap way to reverse the first half, this answer would feel a lot better. It builds the left half, then the core (which is either x #'s
or spaces), then mirrors the left's logic to make the right. Fun fact, you don't need to copy over trailing white-space.
Unrolled and explained:
param($n)
($z=$n-1)..1 + ,0*$n + 1..$z |%{ #Range that repeats 0 n times in the middle
" "*$_ + "#" +($x=" "*($z-$_)) + #Left side
(" ","#")[!($_-$z)]*($n-2) + #Core that swaps when it's the first or last row
"$x#"} #Right side which is left but backwards
add a comment |
up vote
2
down vote
C (clang), -DP=printf(
-DF=for(i
+ 179 = 199 bytes
i;*m="%*d%*dn";g(n){P"%*d",n,0);F=0;i<n-1;i++)P"%d",0);P "n");}
f(n){g(n);F=1;i<n;i++)P m,n-i,0,n+i+i-1,0);F=0;i<n-2;i++)P m,1,0,3*n-3,0);F=n-1;i;i--)P m,n-i,0,n+i+i-1,0);g(n);}
Try it online!
Ungolfed:
f(n){
int i;
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
printf("n");
for(i=1;i<n;i++){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
for(i=0;i<n-2;i++){
printf("0%*dn",n+n+n-3,0);
}
for(i=n-1;i>0;i--){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
}
180 bytes
– ceilingcat
2 days ago
add a comment |
up vote
1
down vote
Python 2, 130 bytes
def f(n):
a=[' '*~-n+n*'#']
b=[' '*(n-i-2)+'#'+' '*(n+2*i) +'#'for i in range(n-2)]
return a+b+['#%*s'%(3*n-3,'#')]*n+b[::-1]+a
Try it online!
On mobile, so not incredibly golfed.
You can remove the space after(n+2*i)
.
– Zacharý
2 days ago
add a comment |
up vote
1
down vote
Batch, 260 bytes
@echo off
set s=
for /l %%i in (1,1,%1)do call set s= %%s%%
echo %s% %s: =#%
call:c %1,-1,3
for /l %%i in (1,1,%1)do echo #%s:~2%%s%%s:~2%#
call:c 3,1,%1
echo %s% %s: =#%
exit/b
:c
for /l %%i in (%*)do call echo %%s:~,%%i%%#%%s:~%%i%%%s%%%s:~%%i%%#
Outputs two leading spaces on each line. Explanation: Batch has no string repetition operator, limited string slicing capability and requires separate statements to perform arithmetic. It was therefore golfiest to make up a string of the input length in spaces (Batch can at least translate these to #
s for the top and bottom lines) and then slice from or to a specific position ranging from 3 to the length to generate the diagonals (this is what the last line of the script achieves).
add a comment |
up vote
1
down vote
Ruby, 96 bytes
->n{[*(n-=2).step(z=n*3+2,2),*[z]*n,*z.step(n,-2)].map{|x|([?#]*2*('# '[x<=>n]*x)).center(z+2)}}
Try it online!
Not very golfed yet. Might golf if I find the time.
add a comment |
up vote
1
down vote
Red, 171 bytes
func[n][c:(a: n - 1)* 2 + n
b: collect[loop c[keep pad/left copy"^/"c + 1]]s: 1x1 s/1: n
foreach i[1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1][loop a[b/(s/2)/(s/1): #"#"s: s + i]]b]
Try it online!
Explanation:
Red
f: func [ n ] [
a: n - 1 ; size - 1
c: a * 2 + n ; total size of widht / height
b: collect [ ; create a block
loop c [ ; composed of size - 1 rows
keep pad/left copy "^/" c + 1 ; of empty lines of size c (and a newline)
]
]
s: a * 1x0 + 1 ; starting coordinate
foreach i [ 1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1 ] [ ; for each offset for the 8 directions
loop a [ ; repeat n - 1 times
b/(s/2)/(s/1): #"#" ; set the array at current coordinate to "#"
s: s + i ; next coordinate
]
]
b ; return the block
]
add a comment |
up vote
1
down vote
APL (Dyalog Unicode), 46 bytesSBCS
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
This solution was provided by Adám - thanks!
Try it online!
My (almost) original solution:
APL (Dyalog Unicode), 61 bytesSBCS
(((⊃∘' #'¨1+5∘=+6∘=)⊢)1⊥⊢∘,)⌺3 3⊢<(((⊖⌊⊢)⌽⌊⊢)(∘.+⍨(⍳¯2+3×⊢)))
Try it online!
Thanks to Adám for his help!
The idea is to find the "diamond" that lies partly in the square and apply an edge-detect filter to "outline" the octagone.
1
46:(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
1
You can't actually use Classic here because of⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.
– Adám
Nov 7 at 13:52
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
1
Edit and copy from here.
– Adám
Nov 7 at 14:40
|
show 1 more comment
up vote
1
down vote
Perl 5, 201 197 188 187 186 bytes:
$a=<>;$b=3*$a-4;$c='$"x($e-$_)."#".$"x$f."#n"';$e=($b-$a)/2+1;$d=$"x$e."#"x$a.$/;$f=$a;print$d,(map{(eval$c,$f+=2)[0]}1..$a-2),("#".$"x$b."#n")x$a,(map{$f-=2;eval$c}reverse 1..$a-2),$d
Try it online!
Reads the size of the octagon from first line of STDIN
.
New contributor
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
@Mego Yep. I was able to save 4 bytes by using$"
instead of" "
.
– Nathan Mills
2 days ago
add a comment |
up vote
0
down vote
C (gcc), 158 153 bytes
- Saved five bytes thanks to ceilingcat.
O,c,t,g;o(n){for(O=2*~-n,t=c=O+n;t--;puts(""))for(g=c;g--;)putchar(32+(!t|t>c-2?g>n-2&g<=O:t<n-1|t>O?t+O==g|t-O==g|c-g-t-n==n-1|c-g-t+n==3-n:!g|g>c-2));}
Try it online!
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
add a comment |
up vote
0
down vote
Python 3, 224 bytes
n=int(input())
z=" "*(n-1)+"#"*n+" "*(n-1)
print(z)
for i in range(n-2):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print((("#"+" "*(n*3-4)+"#n")*n)[:-1])
for i in range(n-3,-1,-1):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print(z)
Try it online!
New contributor
add a comment |
18 Answers
18
active
oldest
votes
18 Answers
18
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
19
down vote
05AB1E, 3 bytes
7ÝΛ
Try it online!
Explanation
# implicit input as length
# implicit input as string to print
7Ý # range [0...7] as directions
Λ # canvas print
See this answer to understand the 05AB1E canvas.
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
3
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
add a comment |
up vote
19
down vote
05AB1E, 3 bytes
7ÝΛ
Try it online!
Explanation
# implicit input as length
# implicit input as string to print
7Ý # range [0...7] as directions
Λ # canvas print
See this answer to understand the 05AB1E canvas.
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
3
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
add a comment |
up vote
19
down vote
up vote
19
down vote
05AB1E, 3 bytes
7ÝΛ
Try it online!
Explanation
# implicit input as length
# implicit input as string to print
7Ý # range [0...7] as directions
Λ # canvas print
See this answer to understand the 05AB1E canvas.
05AB1E, 3 bytes
7ÝΛ
Try it online!
Explanation
# implicit input as length
# implicit input as string to print
7Ý # range [0...7] as directions
Λ # canvas print
See this answer to understand the 05AB1E canvas.
edited Nov 6 at 18:29
answered Nov 6 at 18:12
Emigna
44.6k432136
44.6k432136
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
3
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
add a comment |
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
3
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
Surely this should be 5 bytes? Or do code golf challenges see bytes and characters as interchangeable
– Doug
Nov 7 at 17:10
3
3
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
@Doug: It is 3 bytes in 05ab1e's code page
– Emigna
Nov 7 at 17:11
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
Oh, cool! Thanks for the docs link!
– Doug
Nov 7 at 17:58
add a comment |
up vote
10
down vote
JavaScript (ES6), 114 106 105 104 103 bytes
n=>(g=x=>v=x*2>w?w-x:x,F=x=>~y?`#
`[~x?(h=g(x--))*g(y)>0&h+v!=n|n>h+v:(y--,x=w,2)]+F(x):'')(y=w=--n*3)
Try it online!
How?
This builds the output character by character.
Given the input $n$, we compute:
$$n'=n-1\w=3n'$$
For each character at $(x,y)$, we compute $(h,v)$:
$$h=w/2-left|x-w/2right|\v=w/2-left|y-w/2right|$$
The cells belonging to the octagon satisfy one of the following conditions:
- ($h=0$ OR $v=0$) AND $h+vge n'$ (in red below)
$h+v=n'$ (in orange below)
For example, with $n=4$ (and $n'=3$):
$$begin{matrix}(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)end{matrix}
$$
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
1
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
add a comment |
up vote
10
down vote
JavaScript (ES6), 114 106 105 104 103 bytes
n=>(g=x=>v=x*2>w?w-x:x,F=x=>~y?`#
`[~x?(h=g(x--))*g(y)>0&h+v!=n|n>h+v:(y--,x=w,2)]+F(x):'')(y=w=--n*3)
Try it online!
How?
This builds the output character by character.
Given the input $n$, we compute:
$$n'=n-1\w=3n'$$
For each character at $(x,y)$, we compute $(h,v)$:
$$h=w/2-left|x-w/2right|\v=w/2-left|y-w/2right|$$
The cells belonging to the octagon satisfy one of the following conditions:
- ($h=0$ OR $v=0$) AND $h+vge n'$ (in red below)
$h+v=n'$ (in orange below)
For example, with $n=4$ (and $n'=3$):
$$begin{matrix}(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)end{matrix}
$$
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
1
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
add a comment |
up vote
10
down vote
up vote
10
down vote
JavaScript (ES6), 114 106 105 104 103 bytes
n=>(g=x=>v=x*2>w?w-x:x,F=x=>~y?`#
`[~x?(h=g(x--))*g(y)>0&h+v!=n|n>h+v:(y--,x=w,2)]+F(x):'')(y=w=--n*3)
Try it online!
How?
This builds the output character by character.
Given the input $n$, we compute:
$$n'=n-1\w=3n'$$
For each character at $(x,y)$, we compute $(h,v)$:
$$h=w/2-left|x-w/2right|\v=w/2-left|y-w/2right|$$
The cells belonging to the octagon satisfy one of the following conditions:
- ($h=0$ OR $v=0$) AND $h+vge n'$ (in red below)
$h+v=n'$ (in orange below)
For example, with $n=4$ (and $n'=3$):
$$begin{matrix}(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)end{matrix}
$$
JavaScript (ES6), 114 106 105 104 103 bytes
n=>(g=x=>v=x*2>w?w-x:x,F=x=>~y?`#
`[~x?(h=g(x--))*g(y)>0&h+v!=n|n>h+v:(y--,x=w,2)]+F(x):'')(y=w=--n*3)
Try it online!
How?
This builds the output character by character.
Given the input $n$, we compute:
$$n'=n-1\w=3n'$$
For each character at $(x,y)$, we compute $(h,v)$:
$$h=w/2-left|x-w/2right|\v=w/2-left|y-w/2right|$$
The cells belonging to the octagon satisfy one of the following conditions:
- ($h=0$ OR $v=0$) AND $h+vge n'$ (in red below)
$h+v=n'$ (in orange below)
For example, with $n=4$ (and $n'=3$):
$$begin{matrix}(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,4)}&(1,4)&(2,4)&(3,4)&(4,4)&(4,4)&(3,4)&(2,4)&(1,4)&color{red}{(0,4)}\
color{red}{(0,3)}&(1,3)&(2,3)&(3,3)&(4,3)&(4,3)&(3,3)&(2,3)&(1,3)&color{red}{(0,3)}\
(0,2)&color{orange}{(1,2)}&(2,2)&(3,2)&(4,2)&(4,2)&(3,2)&(2,2)&color{orange}{(1,2)}&(0,2)\
(0,1)&(1,1)&color{orange}{(2,1)}&(3,1)&(4,1)&(4,1)&(3,1)&color{orange}{(2,1)}&(1,1)&(0,1)\
(0,0)&(1,0)&(2,0)&color{red}{(3,0)}&color{red}{(4,0)}&color{red}{(4,0)}&color{red}{(3,0)}&(2,0)&(1,0)&(0,0)end{matrix}
$$
edited Nov 6 at 22:38
answered Nov 6 at 20:09
Arnauld
68k584288
68k584288
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
1
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
add a comment |
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
1
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
Wow, this is awesome! I think $h + v geq n'$ can be simplified to $h+v>n'$, although I'm not sure if that helps the golfing logic at all.
– Giuseppe
Nov 6 at 22:20
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe It could indeed be simplified that way if both conditions were tested. But in the code, the cases $hv=0$ and $hvneq0$ are separated. However, I'm actually testing the opposite condition ($n'>h+v$), which already is 1 byte shorter.
– Arnauld
Nov 6 at 22:29
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
@Giuseppe Your comment prompted me to have a closer look at the formula and I finally saved a byte by writing it a bit differently. :)
– Arnauld
Nov 6 at 22:41
1
1
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
heh, well your comment about $hv=0$ prompted me to go look at my port of your logic and save another couple of bytes!
– Giuseppe
Nov 6 at 22:44
add a comment |
up vote
6
down vote
Charcoal, 5 bytes
GH*N#
My first answer with Charcoal!
Explanation:
GH*N# //Full program
GH //Draw a hollow polygon
* //with 8 sides
N //of side length from input
# //using '#' character
Try it online!
2
For those who prefer verbose Charcoal, that'sPolygonHollow(:*, InputNumber(), "#");
.
– Neil
Nov 6 at 18:51
add a comment |
up vote
6
down vote
Charcoal, 5 bytes
GH*N#
My first answer with Charcoal!
Explanation:
GH*N# //Full program
GH //Draw a hollow polygon
* //with 8 sides
N //of side length from input
# //using '#' character
Try it online!
2
For those who prefer verbose Charcoal, that'sPolygonHollow(:*, InputNumber(), "#");
.
– Neil
Nov 6 at 18:51
add a comment |
up vote
6
down vote
up vote
6
down vote
Charcoal, 5 bytes
GH*N#
My first answer with Charcoal!
Explanation:
GH*N# //Full program
GH //Draw a hollow polygon
* //with 8 sides
N //of side length from input
# //using '#' character
Try it online!
Charcoal, 5 bytes
GH*N#
My first answer with Charcoal!
Explanation:
GH*N# //Full program
GH //Draw a hollow polygon
* //with 8 sides
N //of side length from input
# //using '#' character
Try it online!
edited 2 days ago
answered Nov 6 at 18:25
Cowabunghole
943418
943418
2
For those who prefer verbose Charcoal, that'sPolygonHollow(:*, InputNumber(), "#");
.
– Neil
Nov 6 at 18:51
add a comment |
2
For those who prefer verbose Charcoal, that'sPolygonHollow(:*, InputNumber(), "#");
.
– Neil
Nov 6 at 18:51
2
2
For those who prefer verbose Charcoal, that's
PolygonHollow(:*, InputNumber(), "#");
.– Neil
Nov 6 at 18:51
For those who prefer verbose Charcoal, that's
PolygonHollow(:*, InputNumber(), "#");
.– Neil
Nov 6 at 18:51
add a comment |
up vote
4
down vote
Canvas, 15 14 12 bytes
/⁸⇵╷+×+:⤢n╬┼
Try it here!
Explanation:
/ a diagonal of length n
⁸ the input,
⇵ ceiling divided by 2, (storing the remainder)
╷ minus one
#× repeat "#" that many times
+ append that to the diagonal
:⤢n overlap that with its transpose
╬┼ quad-palindromize with the overlap being the remainder stored earlier
Alternative 12-byter.
add a comment |
up vote
4
down vote
Canvas, 15 14 12 bytes
/⁸⇵╷+×+:⤢n╬┼
Try it here!
Explanation:
/ a diagonal of length n
⁸ the input,
⇵ ceiling divided by 2, (storing the remainder)
╷ minus one
#× repeat "#" that many times
+ append that to the diagonal
:⤢n overlap that with its transpose
╬┼ quad-palindromize with the overlap being the remainder stored earlier
Alternative 12-byter.
add a comment |
up vote
4
down vote
up vote
4
down vote
Canvas, 15 14 12 bytes
/⁸⇵╷+×+:⤢n╬┼
Try it here!
Explanation:
/ a diagonal of length n
⁸ the input,
⇵ ceiling divided by 2, (storing the remainder)
╷ minus one
#× repeat "#" that many times
+ append that to the diagonal
:⤢n overlap that with its transpose
╬┼ quad-palindromize with the overlap being the remainder stored earlier
Alternative 12-byter.
Canvas, 15 14 12 bytes
/⁸⇵╷+×+:⤢n╬┼
Try it here!
Explanation:
/ a diagonal of length n
⁸ the input,
⇵ ceiling divided by 2, (storing the remainder)
╷ minus one
#× repeat "#" that many times
+ append that to the diagonal
:⤢n overlap that with its transpose
╬┼ quad-palindromize with the overlap being the remainder stored earlier
Alternative 12-byter.
edited Nov 6 at 18:55
answered Nov 6 at 17:56
dzaima
13.8k21653
13.8k21653
add a comment |
add a comment |
up vote
4
down vote
R, 122 117 115 bytes
function(n){n=n-1
m=matrix(0,y<-3*n+1,y)
v=t(h<-(w=3*n/2)-abs(row(m)-1-w))
m[h*v&h+v-n|h+v<n]=' '
write(m,1,y,,"")}
Try it online!
Ports the logic from Arnauld's answer, specifically this revision in case there are further improvements. Another 2 bytes saved thanks to Arnauld's suggestion of inverting the logic!
-2 bytes by doing it the other way around (I can't doh*v&h+v-n
in JS because&
is a bitwise operator; but it's a logical one in R, so that works).
– Arnauld
Nov 7 at 15:05
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
add a comment |
up vote
4
down vote
R, 122 117 115 bytes
function(n){n=n-1
m=matrix(0,y<-3*n+1,y)
v=t(h<-(w=3*n/2)-abs(row(m)-1-w))
m[h*v&h+v-n|h+v<n]=' '
write(m,1,y,,"")}
Try it online!
Ports the logic from Arnauld's answer, specifically this revision in case there are further improvements. Another 2 bytes saved thanks to Arnauld's suggestion of inverting the logic!
-2 bytes by doing it the other way around (I can't doh*v&h+v-n
in JS because&
is a bitwise operator; but it's a logical one in R, so that works).
– Arnauld
Nov 7 at 15:05
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
add a comment |
up vote
4
down vote
up vote
4
down vote
R, 122 117 115 bytes
function(n){n=n-1
m=matrix(0,y<-3*n+1,y)
v=t(h<-(w=3*n/2)-abs(row(m)-1-w))
m[h*v&h+v-n|h+v<n]=' '
write(m,1,y,,"")}
Try it online!
Ports the logic from Arnauld's answer, specifically this revision in case there are further improvements. Another 2 bytes saved thanks to Arnauld's suggestion of inverting the logic!
R, 122 117 115 bytes
function(n){n=n-1
m=matrix(0,y<-3*n+1,y)
v=t(h<-(w=3*n/2)-abs(row(m)-1-w))
m[h*v&h+v-n|h+v<n]=' '
write(m,1,y,,"")}
Try it online!
Ports the logic from Arnauld's answer, specifically this revision in case there are further improvements. Another 2 bytes saved thanks to Arnauld's suggestion of inverting the logic!
edited Nov 7 at 15:39
answered Nov 6 at 18:33
Giuseppe
15.7k31051
15.7k31051
-2 bytes by doing it the other way around (I can't doh*v&h+v-n
in JS because&
is a bitwise operator; but it's a logical one in R, so that works).
– Arnauld
Nov 7 at 15:05
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
add a comment |
-2 bytes by doing it the other way around (I can't doh*v&h+v-n
in JS because&
is a bitwise operator; but it's a logical one in R, so that works).
– Arnauld
Nov 7 at 15:05
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
-2 bytes by doing it the other way around (I can't do
h*v&h+v-n
in JS because &
is a bitwise operator; but it's a logical one in R, so that works).– Arnauld
Nov 7 at 15:05
-2 bytes by doing it the other way around (I can't do
h*v&h+v-n
in JS because &
is a bitwise operator; but it's a logical one in R, so that works).– Arnauld
Nov 7 at 15:05
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
@Arnauld thanks!
– Giuseppe
Nov 7 at 15:39
add a comment |
up vote
3
down vote
Python 2, 96 bytes
a=b=n=input()
while a>2-n-n:a-=1;b-=a/~-n+1;s=(-~b*' '+'#').ljust(n);print s+s[-1]*(n-2)+s[::-1]
Try it online!
add a comment |
up vote
3
down vote
Python 2, 96 bytes
a=b=n=input()
while a>2-n-n:a-=1;b-=a/~-n+1;s=(-~b*' '+'#').ljust(n);print s+s[-1]*(n-2)+s[::-1]
Try it online!
add a comment |
up vote
3
down vote
up vote
3
down vote
Python 2, 96 bytes
a=b=n=input()
while a>2-n-n:a-=1;b-=a/~-n+1;s=(-~b*' '+'#').ljust(n);print s+s[-1]*(n-2)+s[::-1]
Try it online!
Python 2, 96 bytes
a=b=n=input()
while a>2-n-n:a-=1;b-=a/~-n+1;s=(-~b*' '+'#').ljust(n);print s+s[-1]*(n-2)+s[::-1]
Try it online!
answered Nov 6 at 22:03
Lynn
49k694223
49k694223
add a comment |
add a comment |
up vote
3
down vote
Python 2, 81 bytes
a=d=n=input()-1
while a<=n:print' '*a+'#'+' #'[a==n]*(3*n-a+~a)+'#';d-=1;a-=d/n+1
Try it online!
Python 2, 75 bytes
a=d=n=input()-1
while a<=n:print' '*a+`' `'[a==n]*(3*n-a+~a)`;d-=1;a-=d/n+1
Try it online!
If mixing output characters is OK.
add a comment |
up vote
3
down vote
Python 2, 81 bytes
a=d=n=input()-1
while a<=n:print' '*a+'#'+' #'[a==n]*(3*n-a+~a)+'#';d-=1;a-=d/n+1
Try it online!
Python 2, 75 bytes
a=d=n=input()-1
while a<=n:print' '*a+`' `'[a==n]*(3*n-a+~a)`;d-=1;a-=d/n+1
Try it online!
If mixing output characters is OK.
add a comment |
up vote
3
down vote
up vote
3
down vote
Python 2, 81 bytes
a=d=n=input()-1
while a<=n:print' '*a+'#'+' #'[a==n]*(3*n-a+~a)+'#';d-=1;a-=d/n+1
Try it online!
Python 2, 75 bytes
a=d=n=input()-1
while a<=n:print' '*a+`' `'[a==n]*(3*n-a+~a)`;d-=1;a-=d/n+1
Try it online!
If mixing output characters is OK.
Python 2, 81 bytes
a=d=n=input()-1
while a<=n:print' '*a+'#'+' #'[a==n]*(3*n-a+~a)+'#';d-=1;a-=d/n+1
Try it online!
Python 2, 75 bytes
a=d=n=input()-1
while a<=n:print' '*a+`' `'[a==n]*(3*n-a+~a)`;d-=1;a-=d/n+1
Try it online!
If mixing output characters is OK.
edited Nov 6 at 23:58
answered Nov 6 at 23:49
xnor
88.3k17183434
88.3k17183434
add a comment |
add a comment |
up vote
3
down vote
Powershell, 91 bytes
param($n)($s=' '*--$n+'#'*$n+'#')
--$n..0+,0*$n+0..$n|%{' '*$_+"#$(' '*(3*$n-2*$_+2))#"}
$s
add a comment |
up vote
3
down vote
Powershell, 91 bytes
param($n)($s=' '*--$n+'#'*$n+'#')
--$n..0+,0*$n+0..$n|%{' '*$_+"#$(' '*(3*$n-2*$_+2))#"}
$s
add a comment |
up vote
3
down vote
up vote
3
down vote
Powershell, 91 bytes
param($n)($s=' '*--$n+'#'*$n+'#')
--$n..0+,0*$n+0..$n|%{' '*$_+"#$(' '*(3*$n-2*$_+2))#"}
$s
Powershell, 91 bytes
param($n)($s=' '*--$n+'#'*$n+'#')
--$n..0+,0*$n+0..$n|%{' '*$_+"#$(' '*(3*$n-2*$_+2))#"}
$s
answered Nov 7 at 7:37
mazzy
1,655312
1,655312
add a comment |
add a comment |
up vote
2
down vote
PowerShell, 107 97 bytes
param($n)($z=$n-1)..1+,0*$n+1..$z|%{" "*$_+"#"+($x=" "*($z-$_))+(" ","#")[!($_-$z)]*($n-2)+"$x#"}
Try it online!
If there was a cheap way to reverse the first half, this answer would feel a lot better. It builds the left half, then the core (which is either x #'s
or spaces), then mirrors the left's logic to make the right. Fun fact, you don't need to copy over trailing white-space.
Unrolled and explained:
param($n)
($z=$n-1)..1 + ,0*$n + 1..$z |%{ #Range that repeats 0 n times in the middle
" "*$_ + "#" +($x=" "*($z-$_)) + #Left side
(" ","#")[!($_-$z)]*($n-2) + #Core that swaps when it's the first or last row
"$x#"} #Right side which is left but backwards
add a comment |
up vote
2
down vote
PowerShell, 107 97 bytes
param($n)($z=$n-1)..1+,0*$n+1..$z|%{" "*$_+"#"+($x=" "*($z-$_))+(" ","#")[!($_-$z)]*($n-2)+"$x#"}
Try it online!
If there was a cheap way to reverse the first half, this answer would feel a lot better. It builds the left half, then the core (which is either x #'s
or spaces), then mirrors the left's logic to make the right. Fun fact, you don't need to copy over trailing white-space.
Unrolled and explained:
param($n)
($z=$n-1)..1 + ,0*$n + 1..$z |%{ #Range that repeats 0 n times in the middle
" "*$_ + "#" +($x=" "*($z-$_)) + #Left side
(" ","#")[!($_-$z)]*($n-2) + #Core that swaps when it's the first or last row
"$x#"} #Right side which is left but backwards
add a comment |
up vote
2
down vote
up vote
2
down vote
PowerShell, 107 97 bytes
param($n)($z=$n-1)..1+,0*$n+1..$z|%{" "*$_+"#"+($x=" "*($z-$_))+(" ","#")[!($_-$z)]*($n-2)+"$x#"}
Try it online!
If there was a cheap way to reverse the first half, this answer would feel a lot better. It builds the left half, then the core (which is either x #'s
or spaces), then mirrors the left's logic to make the right. Fun fact, you don't need to copy over trailing white-space.
Unrolled and explained:
param($n)
($z=$n-1)..1 + ,0*$n + 1..$z |%{ #Range that repeats 0 n times in the middle
" "*$_ + "#" +($x=" "*($z-$_)) + #Left side
(" ","#")[!($_-$z)]*($n-2) + #Core that swaps when it's the first or last row
"$x#"} #Right side which is left but backwards
PowerShell, 107 97 bytes
param($n)($z=$n-1)..1+,0*$n+1..$z|%{" "*$_+"#"+($x=" "*($z-$_))+(" ","#")[!($_-$z)]*($n-2)+"$x#"}
Try it online!
If there was a cheap way to reverse the first half, this answer would feel a lot better. It builds the left half, then the core (which is either x #'s
or spaces), then mirrors the left's logic to make the right. Fun fact, you don't need to copy over trailing white-space.
Unrolled and explained:
param($n)
($z=$n-1)..1 + ,0*$n + 1..$z |%{ #Range that repeats 0 n times in the middle
" "*$_ + "#" +($x=" "*($z-$_)) + #Left side
(" ","#")[!($_-$z)]*($n-2) + #Core that swaps when it's the first or last row
"$x#"} #Right side which is left but backwards
edited Nov 7 at 2:13
answered Nov 7 at 0:38
Veskah
66311
66311
add a comment |
add a comment |
up vote
2
down vote
C (clang), -DP=printf(
-DF=for(i
+ 179 = 199 bytes
i;*m="%*d%*dn";g(n){P"%*d",n,0);F=0;i<n-1;i++)P"%d",0);P "n");}
f(n){g(n);F=1;i<n;i++)P m,n-i,0,n+i+i-1,0);F=0;i<n-2;i++)P m,1,0,3*n-3,0);F=n-1;i;i--)P m,n-i,0,n+i+i-1,0);g(n);}
Try it online!
Ungolfed:
f(n){
int i;
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
printf("n");
for(i=1;i<n;i++){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
for(i=0;i<n-2;i++){
printf("0%*dn",n+n+n-3,0);
}
for(i=n-1;i>0;i--){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
}
180 bytes
– ceilingcat
2 days ago
add a comment |
up vote
2
down vote
C (clang), -DP=printf(
-DF=for(i
+ 179 = 199 bytes
i;*m="%*d%*dn";g(n){P"%*d",n,0);F=0;i<n-1;i++)P"%d",0);P "n");}
f(n){g(n);F=1;i<n;i++)P m,n-i,0,n+i+i-1,0);F=0;i<n-2;i++)P m,1,0,3*n-3,0);F=n-1;i;i--)P m,n-i,0,n+i+i-1,0);g(n);}
Try it online!
Ungolfed:
f(n){
int i;
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
printf("n");
for(i=1;i<n;i++){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
for(i=0;i<n-2;i++){
printf("0%*dn",n+n+n-3,0);
}
for(i=n-1;i>0;i--){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
}
180 bytes
– ceilingcat
2 days ago
add a comment |
up vote
2
down vote
up vote
2
down vote
C (clang), -DP=printf(
-DF=for(i
+ 179 = 199 bytes
i;*m="%*d%*dn";g(n){P"%*d",n,0);F=0;i<n-1;i++)P"%d",0);P "n");}
f(n){g(n);F=1;i<n;i++)P m,n-i,0,n+i+i-1,0);F=0;i<n-2;i++)P m,1,0,3*n-3,0);F=n-1;i;i--)P m,n-i,0,n+i+i-1,0);g(n);}
Try it online!
Ungolfed:
f(n){
int i;
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
printf("n");
for(i=1;i<n;i++){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
for(i=0;i<n-2;i++){
printf("0%*dn",n+n+n-3,0);
}
for(i=n-1;i>0;i--){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
}
C (clang), -DP=printf(
-DF=for(i
+ 179 = 199 bytes
i;*m="%*d%*dn";g(n){P"%*d",n,0);F=0;i<n-1;i++)P"%d",0);P "n");}
f(n){g(n);F=1;i<n;i++)P m,n-i,0,n+i+i-1,0);F=0;i<n-2;i++)P m,1,0,3*n-3,0);F=n-1;i;i--)P m,n-i,0,n+i+i-1,0);g(n);}
Try it online!
Ungolfed:
f(n){
int i;
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
printf("n");
for(i=1;i<n;i++){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
for(i=0;i<n-2;i++){
printf("0%*dn",n+n+n-3,0);
}
for(i=n-1;i>0;i--){
printf("%*d%*dn",n-i,0,n+i+i-1,0);
}
printf("%*d",n,0);
for(i=0;i<n-1;i++){
printf("0");
}
}
edited yesterday
answered Nov 7 at 3:32
Logern
68546
68546
180 bytes
– ceilingcat
2 days ago
add a comment |
180 bytes
– ceilingcat
2 days ago
180 bytes
– ceilingcat
2 days ago
180 bytes
– ceilingcat
2 days ago
add a comment |
up vote
1
down vote
Python 2, 130 bytes
def f(n):
a=[' '*~-n+n*'#']
b=[' '*(n-i-2)+'#'+' '*(n+2*i) +'#'for i in range(n-2)]
return a+b+['#%*s'%(3*n-3,'#')]*n+b[::-1]+a
Try it online!
On mobile, so not incredibly golfed.
You can remove the space after(n+2*i)
.
– Zacharý
2 days ago
add a comment |
up vote
1
down vote
Python 2, 130 bytes
def f(n):
a=[' '*~-n+n*'#']
b=[' '*(n-i-2)+'#'+' '*(n+2*i) +'#'for i in range(n-2)]
return a+b+['#%*s'%(3*n-3,'#')]*n+b[::-1]+a
Try it online!
On mobile, so not incredibly golfed.
You can remove the space after(n+2*i)
.
– Zacharý
2 days ago
add a comment |
up vote
1
down vote
up vote
1
down vote
Python 2, 130 bytes
def f(n):
a=[' '*~-n+n*'#']
b=[' '*(n-i-2)+'#'+' '*(n+2*i) +'#'for i in range(n-2)]
return a+b+['#%*s'%(3*n-3,'#')]*n+b[::-1]+a
Try it online!
On mobile, so not incredibly golfed.
Python 2, 130 bytes
def f(n):
a=[' '*~-n+n*'#']
b=[' '*(n-i-2)+'#'+' '*(n+2*i) +'#'for i in range(n-2)]
return a+b+['#%*s'%(3*n-3,'#')]*n+b[::-1]+a
Try it online!
On mobile, so not incredibly golfed.
answered Nov 6 at 19:02
TFeld
13.3k21039
13.3k21039
You can remove the space after(n+2*i)
.
– Zacharý
2 days ago
add a comment |
You can remove the space after(n+2*i)
.
– Zacharý
2 days ago
You can remove the space after
(n+2*i)
.– Zacharý
2 days ago
You can remove the space after
(n+2*i)
.– Zacharý
2 days ago
add a comment |
up vote
1
down vote
Batch, 260 bytes
@echo off
set s=
for /l %%i in (1,1,%1)do call set s= %%s%%
echo %s% %s: =#%
call:c %1,-1,3
for /l %%i in (1,1,%1)do echo #%s:~2%%s%%s:~2%#
call:c 3,1,%1
echo %s% %s: =#%
exit/b
:c
for /l %%i in (%*)do call echo %%s:~,%%i%%#%%s:~%%i%%%s%%%s:~%%i%%#
Outputs two leading spaces on each line. Explanation: Batch has no string repetition operator, limited string slicing capability and requires separate statements to perform arithmetic. It was therefore golfiest to make up a string of the input length in spaces (Batch can at least translate these to #
s for the top and bottom lines) and then slice from or to a specific position ranging from 3 to the length to generate the diagonals (this is what the last line of the script achieves).
add a comment |
up vote
1
down vote
Batch, 260 bytes
@echo off
set s=
for /l %%i in (1,1,%1)do call set s= %%s%%
echo %s% %s: =#%
call:c %1,-1,3
for /l %%i in (1,1,%1)do echo #%s:~2%%s%%s:~2%#
call:c 3,1,%1
echo %s% %s: =#%
exit/b
:c
for /l %%i in (%*)do call echo %%s:~,%%i%%#%%s:~%%i%%%s%%%s:~%%i%%#
Outputs two leading spaces on each line. Explanation: Batch has no string repetition operator, limited string slicing capability and requires separate statements to perform arithmetic. It was therefore golfiest to make up a string of the input length in spaces (Batch can at least translate these to #
s for the top and bottom lines) and then slice from or to a specific position ranging from 3 to the length to generate the diagonals (this is what the last line of the script achieves).
add a comment |
up vote
1
down vote
up vote
1
down vote
Batch, 260 bytes
@echo off
set s=
for /l %%i in (1,1,%1)do call set s= %%s%%
echo %s% %s: =#%
call:c %1,-1,3
for /l %%i in (1,1,%1)do echo #%s:~2%%s%%s:~2%#
call:c 3,1,%1
echo %s% %s: =#%
exit/b
:c
for /l %%i in (%*)do call echo %%s:~,%%i%%#%%s:~%%i%%%s%%%s:~%%i%%#
Outputs two leading spaces on each line. Explanation: Batch has no string repetition operator, limited string slicing capability and requires separate statements to perform arithmetic. It was therefore golfiest to make up a string of the input length in spaces (Batch can at least translate these to #
s for the top and bottom lines) and then slice from or to a specific position ranging from 3 to the length to generate the diagonals (this is what the last line of the script achieves).
Batch, 260 bytes
@echo off
set s=
for /l %%i in (1,1,%1)do call set s= %%s%%
echo %s% %s: =#%
call:c %1,-1,3
for /l %%i in (1,1,%1)do echo #%s:~2%%s%%s:~2%#
call:c 3,1,%1
echo %s% %s: =#%
exit/b
:c
for /l %%i in (%*)do call echo %%s:~,%%i%%#%%s:~%%i%%%s%%%s:~%%i%%#
Outputs two leading spaces on each line. Explanation: Batch has no string repetition operator, limited string slicing capability and requires separate statements to perform arithmetic. It was therefore golfiest to make up a string of the input length in spaces (Batch can at least translate these to #
s for the top and bottom lines) and then slice from or to a specific position ranging from 3 to the length to generate the diagonals (this is what the last line of the script achieves).
answered Nov 7 at 9:20
Neil
77.5k744174
77.5k744174
add a comment |
add a comment |
up vote
1
down vote
Ruby, 96 bytes
->n{[*(n-=2).step(z=n*3+2,2),*[z]*n,*z.step(n,-2)].map{|x|([?#]*2*('# '[x<=>n]*x)).center(z+2)}}
Try it online!
Not very golfed yet. Might golf if I find the time.
add a comment |
up vote
1
down vote
Ruby, 96 bytes
->n{[*(n-=2).step(z=n*3+2,2),*[z]*n,*z.step(n,-2)].map{|x|([?#]*2*('# '[x<=>n]*x)).center(z+2)}}
Try it online!
Not very golfed yet. Might golf if I find the time.
add a comment |
up vote
1
down vote
up vote
1
down vote
Ruby, 96 bytes
->n{[*(n-=2).step(z=n*3+2,2),*[z]*n,*z.step(n,-2)].map{|x|([?#]*2*('# '[x<=>n]*x)).center(z+2)}}
Try it online!
Not very golfed yet. Might golf if I find the time.
Ruby, 96 bytes
->n{[*(n-=2).step(z=n*3+2,2),*[z]*n,*z.step(n,-2)].map{|x|([?#]*2*('# '[x<=>n]*x)).center(z+2)}}
Try it online!
Not very golfed yet. Might golf if I find the time.
answered Nov 7 at 9:40
G B
7,4261327
7,4261327
add a comment |
add a comment |
up vote
1
down vote
Red, 171 bytes
func[n][c:(a: n - 1)* 2 + n
b: collect[loop c[keep pad/left copy"^/"c + 1]]s: 1x1 s/1: n
foreach i[1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1][loop a[b/(s/2)/(s/1): #"#"s: s + i]]b]
Try it online!
Explanation:
Red
f: func [ n ] [
a: n - 1 ; size - 1
c: a * 2 + n ; total size of widht / height
b: collect [ ; create a block
loop c [ ; composed of size - 1 rows
keep pad/left copy "^/" c + 1 ; of empty lines of size c (and a newline)
]
]
s: a * 1x0 + 1 ; starting coordinate
foreach i [ 1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1 ] [ ; for each offset for the 8 directions
loop a [ ; repeat n - 1 times
b/(s/2)/(s/1): #"#" ; set the array at current coordinate to "#"
s: s + i ; next coordinate
]
]
b ; return the block
]
add a comment |
up vote
1
down vote
Red, 171 bytes
func[n][c:(a: n - 1)* 2 + n
b: collect[loop c[keep pad/left copy"^/"c + 1]]s: 1x1 s/1: n
foreach i[1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1][loop a[b/(s/2)/(s/1): #"#"s: s + i]]b]
Try it online!
Explanation:
Red
f: func [ n ] [
a: n - 1 ; size - 1
c: a * 2 + n ; total size of widht / height
b: collect [ ; create a block
loop c [ ; composed of size - 1 rows
keep pad/left copy "^/" c + 1 ; of empty lines of size c (and a newline)
]
]
s: a * 1x0 + 1 ; starting coordinate
foreach i [ 1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1 ] [ ; for each offset for the 8 directions
loop a [ ; repeat n - 1 times
b/(s/2)/(s/1): #"#" ; set the array at current coordinate to "#"
s: s + i ; next coordinate
]
]
b ; return the block
]
add a comment |
up vote
1
down vote
up vote
1
down vote
Red, 171 bytes
func[n][c:(a: n - 1)* 2 + n
b: collect[loop c[keep pad/left copy"^/"c + 1]]s: 1x1 s/1: n
foreach i[1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1][loop a[b/(s/2)/(s/1): #"#"s: s + i]]b]
Try it online!
Explanation:
Red
f: func [ n ] [
a: n - 1 ; size - 1
c: a * 2 + n ; total size of widht / height
b: collect [ ; create a block
loop c [ ; composed of size - 1 rows
keep pad/left copy "^/" c + 1 ; of empty lines of size c (and a newline)
]
]
s: a * 1x0 + 1 ; starting coordinate
foreach i [ 1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1 ] [ ; for each offset for the 8 directions
loop a [ ; repeat n - 1 times
b/(s/2)/(s/1): #"#" ; set the array at current coordinate to "#"
s: s + i ; next coordinate
]
]
b ; return the block
]
Red, 171 bytes
func[n][c:(a: n - 1)* 2 + n
b: collect[loop c[keep pad/left copy"^/"c + 1]]s: 1x1 s/1: n
foreach i[1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1][loop a[b/(s/2)/(s/1): #"#"s: s + i]]b]
Try it online!
Explanation:
Red
f: func [ n ] [
a: n - 1 ; size - 1
c: a * 2 + n ; total size of widht / height
b: collect [ ; create a block
loop c [ ; composed of size - 1 rows
keep pad/left copy "^/" c + 1 ; of empty lines of size c (and a newline)
]
]
s: a * 1x0 + 1 ; starting coordinate
foreach i [ 1x0 1 0x1 -1x1 -1x0 -1 0x-1 1x-1 ] [ ; for each offset for the 8 directions
loop a [ ; repeat n - 1 times
b/(s/2)/(s/1): #"#" ; set the array at current coordinate to "#"
s: s + i ; next coordinate
]
]
b ; return the block
]
edited Nov 7 at 10:10
answered Nov 7 at 9:44
Galen Ivanov
5,62211031
5,62211031
add a comment |
add a comment |
up vote
1
down vote
APL (Dyalog Unicode), 46 bytesSBCS
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
This solution was provided by Adám - thanks!
Try it online!
My (almost) original solution:
APL (Dyalog Unicode), 61 bytesSBCS
(((⊃∘' #'¨1+5∘=+6∘=)⊢)1⊥⊢∘,)⌺3 3⊢<(((⊖⌊⊢)⌽⌊⊢)(∘.+⍨(⍳¯2+3×⊢)))
Try it online!
Thanks to Adám for his help!
The idea is to find the "diamond" that lies partly in the square and apply an edge-detect filter to "outline" the octagone.
1
46:(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
1
You can't actually use Classic here because of⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.
– Adám
Nov 7 at 13:52
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
1
Edit and copy from here.
– Adám
Nov 7 at 14:40
|
show 1 more comment
up vote
1
down vote
APL (Dyalog Unicode), 46 bytesSBCS
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
This solution was provided by Adám - thanks!
Try it online!
My (almost) original solution:
APL (Dyalog Unicode), 61 bytesSBCS
(((⊃∘' #'¨1+5∘=+6∘=)⊢)1⊥⊢∘,)⌺3 3⊢<(((⊖⌊⊢)⌽⌊⊢)(∘.+⍨(⍳¯2+3×⊢)))
Try it online!
Thanks to Adám for his help!
The idea is to find the "diamond" that lies partly in the square and apply an edge-detect filter to "outline" the octagone.
1
46:(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
1
You can't actually use Classic here because of⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.
– Adám
Nov 7 at 13:52
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
1
Edit and copy from here.
– Adám
Nov 7 at 14:40
|
show 1 more comment
up vote
1
down vote
up vote
1
down vote
APL (Dyalog Unicode), 46 bytesSBCS
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
This solution was provided by Adám - thanks!
Try it online!
My (almost) original solution:
APL (Dyalog Unicode), 61 bytesSBCS
(((⊃∘' #'¨1+5∘=+6∘=)⊢)1⊥⊢∘,)⌺3 3⊢<(((⊖⌊⊢)⌽⌊⊢)(∘.+⍨(⍳¯2+3×⊢)))
Try it online!
Thanks to Adám for his help!
The idea is to find the "diamond" that lies partly in the square and apply an edge-detect filter to "outline" the octagone.
APL (Dyalog Unicode), 46 bytesSBCS
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
This solution was provided by Adám - thanks!
Try it online!
My (almost) original solution:
APL (Dyalog Unicode), 61 bytesSBCS
(((⊃∘' #'¨1+5∘=+6∘=)⊢)1⊥⊢∘,)⌺3 3⊢<(((⊖⌊⊢)⌽⌊⊢)(∘.+⍨(⍳¯2+3×⊢)))
Try it online!
Thanks to Adám for his help!
The idea is to find the "diamond" that lies partly in the square and apply an edge-detect filter to "outline" the octagone.
edited Nov 7 at 15:08
answered Nov 7 at 13:48
Galen Ivanov
5,62211031
5,62211031
1
46:(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
1
You can't actually use Classic here because of⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.
– Adám
Nov 7 at 13:52
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
1
Edit and copy from here.
– Adám
Nov 7 at 14:40
|
show 1 more comment
1
46:(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
1
You can't actually use Classic here because of⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.
– Adám
Nov 7 at 13:52
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
1
Edit and copy from here.
– Adám
Nov 7 at 14:40
1
1
46:
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
46:
(' '@~5 6∊⍨1⊥⊢∘,)⌺3 3⊢<(⍉⌽⌊⊢)⍣2∘(∘.+⍨∘⍳¯2+3×⊢)
– Adám
Nov 7 at 13:51
1
1
You can't actually use Classic here because of
⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.– Adám
Nov 7 at 13:52
You can't actually use Classic here because of
⌺
. Rather count 1 byte/char by referring to SBCS as per Meta.– Adám
Nov 7 at 13:52
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
@Adám Thanks! I don't know how to edit the header, can you do it for me?
– Galen Ivanov
Nov 7 at 14:01
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
What do you mean by editing the header?
– Adám
Nov 7 at 14:22
1
1
Edit and copy from here.
– Adám
Nov 7 at 14:40
Edit and copy from here.
– Adám
Nov 7 at 14:40
|
show 1 more comment
up vote
1
down vote
Perl 5, 201 197 188 187 186 bytes:
$a=<>;$b=3*$a-4;$c='$"x($e-$_)."#".$"x$f."#n"';$e=($b-$a)/2+1;$d=$"x$e."#"x$a.$/;$f=$a;print$d,(map{(eval$c,$f+=2)[0]}1..$a-2),("#".$"x$b."#n")x$a,(map{$f-=2;eval$c}reverse 1..$a-2),$d
Try it online!
Reads the size of the octagon from first line of STDIN
.
New contributor
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
@Mego Yep. I was able to save 4 bytes by using$"
instead of" "
.
– Nathan Mills
2 days ago
add a comment |
up vote
1
down vote
Perl 5, 201 197 188 187 186 bytes:
$a=<>;$b=3*$a-4;$c='$"x($e-$_)."#".$"x$f."#n"';$e=($b-$a)/2+1;$d=$"x$e."#"x$a.$/;$f=$a;print$d,(map{(eval$c,$f+=2)[0]}1..$a-2),("#".$"x$b."#n")x$a,(map{$f-=2;eval$c}reverse 1..$a-2),$d
Try it online!
Reads the size of the octagon from first line of STDIN
.
New contributor
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
@Mego Yep. I was able to save 4 bytes by using$"
instead of" "
.
– Nathan Mills
2 days ago
add a comment |
up vote
1
down vote
up vote
1
down vote
Perl 5, 201 197 188 187 186 bytes:
$a=<>;$b=3*$a-4;$c='$"x($e-$_)."#".$"x$f."#n"';$e=($b-$a)/2+1;$d=$"x$e."#"x$a.$/;$f=$a;print$d,(map{(eval$c,$f+=2)[0]}1..$a-2),("#".$"x$b."#n")x$a,(map{$f-=2;eval$c}reverse 1..$a-2),$d
Try it online!
Reads the size of the octagon from first line of STDIN
.
New contributor
Perl 5, 201 197 188 187 186 bytes:
$a=<>;$b=3*$a-4;$c='$"x($e-$_)."#".$"x$f."#n"';$e=($b-$a)/2+1;$d=$"x$e."#"x$a.$/;$f=$a;print$d,(map{(eval$c,$f+=2)[0]}1..$a-2),("#".$"x$b."#n")x$a,(map{$f-=2;eval$c}reverse 1..$a-2),$d
Try it online!
Reads the size of the octagon from first line of STDIN
.
New contributor
edited 2 days ago
New contributor
answered 2 days ago
Nathan Mills
112
112
New contributor
New contributor
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
@Mego Yep. I was able to save 4 bytes by using$"
instead of" "
.
– Nathan Mills
2 days ago
add a comment |
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
@Mego Yep. I was able to save 4 bytes by using$"
instead of" "
.
– Nathan Mills
2 days ago
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
Welcome to PPCG! You can probably shave off a few bytes here and there by using tricks found in this post.
– Mego♦
2 days ago
@Mego Yep. I was able to save 4 bytes by using
$"
instead of " "
.– Nathan Mills
2 days ago
@Mego Yep. I was able to save 4 bytes by using
$"
instead of " "
.– Nathan Mills
2 days ago
add a comment |
up vote
0
down vote
C (gcc), 158 153 bytes
- Saved five bytes thanks to ceilingcat.
O,c,t,g;o(n){for(O=2*~-n,t=c=O+n;t--;puts(""))for(g=c;g--;)putchar(32+(!t|t>c-2?g>n-2&g<=O:t<n-1|t>O?t+O==g|t-O==g|c-g-t-n==n-1|c-g-t+n==3-n:!g|g>c-2));}
Try it online!
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
add a comment |
up vote
0
down vote
C (gcc), 158 153 bytes
- Saved five bytes thanks to ceilingcat.
O,c,t,g;o(n){for(O=2*~-n,t=c=O+n;t--;puts(""))for(g=c;g--;)putchar(32+(!t|t>c-2?g>n-2&g<=O:t<n-1|t>O?t+O==g|t-O==g|c-g-t-n==n-1|c-g-t+n==3-n:!g|g>c-2));}
Try it online!
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
add a comment |
up vote
0
down vote
up vote
0
down vote
C (gcc), 158 153 bytes
- Saved five bytes thanks to ceilingcat.
O,c,t,g;o(n){for(O=2*~-n,t=c=O+n;t--;puts(""))for(g=c;g--;)putchar(32+(!t|t>c-2?g>n-2&g<=O:t<n-1|t>O?t+O==g|t-O==g|c-g-t-n==n-1|c-g-t+n==3-n:!g|g>c-2));}
Try it online!
C (gcc), 158 153 bytes
- Saved five bytes thanks to ceilingcat.
O,c,t,g;o(n){for(O=2*~-n,t=c=O+n;t--;puts(""))for(g=c;g--;)putchar(32+(!t|t>c-2?g>n-2&g<=O:t<n-1|t>O?t+O==g|t-O==g|c-g-t-n==n-1|c-g-t+n==3-n:!g|g>c-2));}
Try it online!
edited 2 days ago
answered 2 days ago
Jonathan Frech
6,16311040
6,16311040
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
add a comment |
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
@ceilingcat Thank you.
– Jonathan Frech
2 days ago
add a comment |
up vote
0
down vote
Python 3, 224 bytes
n=int(input())
z=" "*(n-1)+"#"*n+" "*(n-1)
print(z)
for i in range(n-2):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print((("#"+" "*(n*3-4)+"#n")*n)[:-1])
for i in range(n-3,-1,-1):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print(z)
Try it online!
New contributor
add a comment |
up vote
0
down vote
Python 3, 224 bytes
n=int(input())
z=" "*(n-1)+"#"*n+" "*(n-1)
print(z)
for i in range(n-2):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print((("#"+" "*(n*3-4)+"#n")*n)[:-1])
for i in range(n-3,-1,-1):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print(z)
Try it online!
New contributor
add a comment |
up vote
0
down vote
up vote
0
down vote
Python 3, 224 bytes
n=int(input())
z=" "*(n-1)+"#"*n+" "*(n-1)
print(z)
for i in range(n-2):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print((("#"+" "*(n*3-4)+"#n")*n)[:-1])
for i in range(n-3,-1,-1):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print(z)
Try it online!
New contributor
Python 3, 224 bytes
n=int(input())
z=" "*(n-1)+"#"*n+" "*(n-1)
print(z)
for i in range(n-2):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print((("#"+" "*(n*3-4)+"#n")*n)[:-1])
for i in range(n-3,-1,-1):print(" "*(n-i-2)+"#"+" "*(i*2+n)+"#")
print(z)
Try it online!
New contributor
New contributor
answered yesterday
glietz
316
316
New contributor
New contributor
add a comment |
add a comment |
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
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcodegolf.stackexchange.com%2fquestions%2f175408%2fascii-art-octagons%23new-answer', 'question_page');
}
);
Post as a guest
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
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
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
1
Can we use different output characters, or does it need to be consistent?
– Emigna
Nov 6 at 18:13
@Emigna Different characters are fine.
– AdmBorkBork
Nov 6 at 18:26
1
Quite related.
– Charlie
Nov 7 at 11:06