B←{'/\ '['\/'⍳⍺⍺⍵]}
C←⊢,⌽B
C(⊢⍪⊖B)⊃,/{C⊖A↑⊖' /'[⍵≤∘.+⍨⍳⍵+1]}¨⌽⍳A←⎕
Спробуйте в Інтернеті!
Припускається ⎕IO←0
, що є стандартним для багатьох систем, тому програма є 0-індексованою.
Це tradfn, який приймає вхід через STDIN.
Пояснення
(трохи застаріла)
Зауважте, що ⍺
це лівий аргумент, ⍵
це правий аргумент і ⍺⍺
лівий оператор.
B
це функція, яка допомагає у дзеркальному відображенні алмазів. Він приймає рядок як правий аргумент, а зворотну функцію як ліву (так B
це оператор).
B←{'/\ '['\/'⍳⍺⍺⍵]}
⍺⍺⍵ Apply ⍺⍺ on ⍵
'\/'⍳ Find the index of the reflected string in '\/' (if the character is not found in `'\/'`, then return an index out of the bounds of the string, ie `2` if the character is a space)
'/\ '[ ] Use these indexes on '/\ ' to reflect the '/\' characters
А зараз ми переходимо до основної частини програми.
A←⎕ Assign the input to variable A
⍳ Create a range 0 .. A-1
⌽ Reverse it so that it becomes A-1 .. 0
¨ For each element do (the right argument is the element):
⍳⍵+1 Create a range 0 .. ⍵
∘.+⍨ Create an addition table using the range to result in a matrix like so:
0+0 0+1 0+2 .. 0+⍵
1+0 1+1 1+2 .. 1+⍵
2+0 2+1 2+2 .. 2+⍵
...
⍵+0 ⍵+1 ⍵+2 .. ⍵+⍵
⍵≤ The elements of the matrix that are greater than or equal to the ⍵,
this creates a triangle matrix that looks like this:
0 0 .. 0 1
0 0 .. 1 1
..
1 1 .. 1 1
' /'[...] Index it in ' /' to get a character matrix
(ie replace 0s with spaces and 1s with '/'s)
⊖ Flip this vertically
A↑ Pad the top spaces
Це необхідно для того, щоб усі трикутники, створені для кожного елемента в діапазоні, ⌽⍳A
мали однакову висоту, щоб згодом їх можна було з'єднати один з одним.
⊖ Flip the matrix vertically again to go back to the original state
(⊢, ) Concatenate it with
⌽B itself, but flipped horizontally
,/ Concatenate all triangles formed by the range operator
⊃ The resulting matrix is nested, so this operator "un-nests" it
Тепер верхня ліва частина візерунка завершена. Залишилося перевернути його вертикально, а потім горизонтально.
(⊢⍪⊖B) Concatenate the resulting matrix with itself but flipped vertically
(the vertically flipped matrix is concatenated below of the original matrix)
Now the left part of the pattern is complete
(⊢,⌽B) Concatenate the resulting matrix with itself flipped horizontally
І це все! Вихід - матриця символів з /\
s і прокладена пробілами.