Podwój dwa diamenty

25

Problem

Podano dodatnią liczbę całkowitą ngdzien < 100

Wygeneruj wzór diamentu w następujący sposób:

Wkład n=1

/\/\
\/\/

Wejście n=2:

 /\      /\
//\\/\/\//\\
\\//\/\/\\//
 \/      \/

Wejście n=3:

  /\                /\
 //\\  /\      /\  //\\
///\\\//\\/\/\//\\///\\\
\\\///\\//\/\/\\//\\\///
 \\//  \/      \/  \\//
  \/                \/

Wejście n=4:

   /\                              /\
  //\\    /\                /\    //\\
 ///\\\  //\\  /\      /\  //\\  ///\\\
////\\\\///\\\//\\/\/\//\\///\\\////\\\\
\\\\////\\\///\\//\/\/\\//\\\///\\\\////
 \\\///  \\//  \/      \/  \\//  \\\///
  \\//    \/                \/    \\//
   \/                              \/

I tak dalej.

Zasady

  • Program i funkcja dozwolone.
  • Dozwolone końcowe znaki odstępu.
  • Wiodące białe znaki na liniach bez /lub \dozwolone.
  • Dozwolone końcowe i wiodące znaki nowej linii.
  • Najkrótszy kod w bajtach wygrywa

Jest to prawdopodobnie dość powiązane

LiefdeWen
źródło
2
@carusocomputing Masz teraz halucynacje ...
Erik the Outgolfer
1
@dzaima do piaskownicy!
Magic Octopus Urn
1
@ carusocomputing Jasne, ale najpierw muszę dowiedzieć się, dlaczego i jak to się stało: p
dzaima
1
Również powiązany codegolf.stackexchange.com/q/56032/15599
Level River St

Odpowiedzi:

12

SOGL V0.12 , 24 bajty

ā.∫ā;∫ \*+}ø┼↔±╬¡;øΚ┼}╬³

Wypróbuj tutaj!

Wyjaśnienie:

ā                         push an empty array (the main canvas)
 .∫                  }    iterate over the input, pushing 1-indexed iteration
   ā;                       push an empty array below the iteration
     ∫    }                 iterate over the iteration counter
       \*                     push current iteration amount of slashes
         +                    append those to the 2nd array
           ø┼               append nothing (so it'd space the array to a square)
             ↔±             reverse horizontally (swapping slashes)
               έ           quad-palindromize with 0 overlap and swapping characters as required
                 ;          get the canvas ontop
                  øΚ        prepend to it an empty line (so the now bigger romb would be one up)
                    ┼       append horizontally the canvas to the current romb
                      ╬³  palindromize horizontally with no overlap and swapping characters
dzaima
źródło
2
Wow, to chore polecenie.
Magic Octopus Urn
@carusocomputing Również całkiem nowy dodatek. odpowiedni plik . Wciąż muszę wymyślić, co zrobić z pozostałymi 190 postaciami
dzaima
Wow, więc masz 190 darmowych poleceń w SOGOLU i możesz już efektywnie grać w golfa?
Magic Octopus Urn
1
@carusocomputing Miałem na myśli 190 darmowych poleceń dla lol
dzaima
2
@ carusocomputing Ale dla zabawy (około) znaki 90/256 nie są zaimplementowane, a 61/256 nie ma żadnej dokumentacji
dzaima
7

Węgiel drzewny , 30 27 bajtów

F⁺¹N«Fι«F⁴«↙⁻ικ↑⟲T»←»Mι←»‖M

Wypróbuj online! Link jest do pełnej wersji kodu. Objaśnienie: Prymitywy rysunkowe Węgla drzewnego nie mogą narysować diamentu, ponieważ ruchy diagonalne pozostają na kwadratach o tej samej parzystości. Edycja: Nowym rozwiązaniem jest narysowanie jednej strony diamentu, a następnie obrócenie całego płótna w celu narysowania następnej strony, umożliwiając narysowanie diamentu w pętli. Ta pętla jest następnie zawarta w pętli, aby narysować wszystkie wewnętrzne diamenty dla każdego diamentu. Najbardziej zewnętrzna pętla przyciąga wszystkie diamenty sąsiadujące ze sobą. Wreszcie obraz jest dublowany.

Zauważ, że od tego czasu węgiel drzewny został rozszerzony i można zapisać kolejny bajt za pomocą Increment.

Neil
źródło
Gdzie są ruchy o 0,5 znaku, kiedy ich potrzebujesz :(
CalculatorFeline
6

APL (Dyalog) , 70 69 66 bajtów

B←{'/\ '['\/'⍳⍺⍺⍵]}
C←⊢,⌽B
C(⊢⍪⊖B)⊃,/{C⊖A↑⊖' /'[⍵≤∘.+⍨⍳⍵+1]}¨⌽⍳A←⎕

Wypróbuj online!

Zakłada się ⎕IO←0, co jest standardem w wielu systemach, więc program ma indeks 0.

Jest to tradfn, który pobiera dane wejściowe przez STDIN.

Wyjaśnienie

(nieco przestarzały)

Zauważ, że jest to lewy argument, prawy argument i ⍺⍺lewy operator.

Bto funkcja, która pomaga w odbiciu diamentów. Bierze ciąg jako prawy argument, a funkcję odwrotną jak lewy (podobnie Bjak operator).

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 teraz przechodzimy do głównej części programu.

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

Jest to konieczne, aby zapewnić, że wszystkie trójkąty utworzone dla każdego elementu w zakresie ⌽⍳Amają tę samą wysokość, aby można je później połączyć ze sobą.

                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

Teraz górna lewa część wzoru jest zakończona. Pozostaje tylko obrócić go w pionie, a następnie w poziomie.

(⊢⍪⊖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

I to wszystko! Wyjściem jest macierz znaków ze /\s i wypełniona spacjami.

Kritixi Lithos
źródło
6

05AB1E , 47 43 41 35 34 33 32 bajty

'/×ηηvy∞.C.Bø€∞¹NαGð.ø}})øíJ.B»∞

Wypróbuj online!

(-4 bajty dzięki @Emigna, który zaproponował 3 ulepszenia)


To wyjaśnienie dotyczyło wcześniejszej wersji, od tego czasu było kilka iteracji.

>                                          # [2]
 '/×                                       # ['//']
    η                                      # ['/','//']
     €η                                    # [['/'], ['/', '//']]
       vy                    }             # {For each element...}
         ∞                                 # Mirror horizontally.
          ¶¡                               # Split mirror on newlines.
            N£                             # Shave each diamond down a layer.
              .C                           # Horizontal center.
                .B                         # Pad for the transpose.
                  ø                        # Transpose.
                   €∞                      # Mirror each (vertically).
                     ¹NαFð.ø}              # Pad each list for transpose (verticaly).
                              )            # Wrap back to list...
                               €.B         # Pad each horizontally.
                                  ¦        # Remove the random numbers?
                                   ø       # Back to horizontal...
                                    €R     # Reverse to get correct order.
                                      J    # Join, no spaces.
                                       »   # Join newlines.
                                        ∞  # Final horizontal mirror.
Urna Magicznej Ośmiornicy
źródło
Między twoimi diamentami są spacje
LiefdeWen
@LiefdeWen jest to w porządku? Z końcowymi i poprzedzającymi znakami nowej linii?
Magic Octopus Urn
Możesz użyć przedrostków ηzamiast przyrostków, ponieważ są one takie same dla tego ciągu.
Emigna
jest taki sam jak ¨tutaj i €Rjest í.
Emigna
@Emigna Grałem w golfa, ale dziękuję! Spróbujesz 33-bajtowej odpowiedzi, która jest w 100% inna: P?
Magic Octopus Urn
5

CJam , 65 63 bajtów

q~_,:)_W%\+f{_2*S*a@2$-*\_,f{)'/*\Se[_W%'/'\er+}_W%Wf%+1$++}zN*

Wypróbuj online!

Wyjaśnienie

W tym objaśnieniu będę się odnosił do numeru wejściowego jako n.

q~        e# Read and eval the input (push n to the stack).
_,        e# Copy it an get the range [0 .. n-1].
:)        e# Increment each element to get [1 .. n].
_W%       e# Copy it and reverse it.
\+        e# Prepend the reverse to the original range, resulting in [n n-1 .. 1 1 .. n-1 n].
f{        e# Map over each number x in the range using n as an extra parameter:
 _2*S*a   e#  Push a string containing n*2 spaces, and wrap it in an array.
 @2$-     e#  Push n-x.
 *        e#  Repeat the space string from before n-x times.
 \        e#  Bring x back to the top.
 _,       e#  Copy it and get the range [0 .. x-1].
 f{       e#  Map over each number y in this range, using x as an extra parameter:
  )       e#   Increment y.
  '/*     e#   Repeat '/' y times.
  \Se[    e#   Pad the resulting string to length x by adding spaces to the left.
  _W%     e#   Copy the result and reverse it.
  '/'\er  e#   Replace '/' with '\' in that.
  +       e#   Concatenate to the other string. This forms one row of one diamond.
 }        e#  (end map, now we have the top half of a diamond of size x)
 _W%      e#  Copy the half-diamond and reverse it.
 Wf%      e#  Reverse each row.
 +        e#  Concatenate to the top half. Now we have a full diamond of size x.
 1$++     e#  Put the spaces from before at the beginning and end. This is to pad the top
          e#  and bottom of the smaller diamonds.
}         e# (end map)
z         e# Transpose.
N*        e# Join with newlines. Implicit output.
Business Cat
źródło
Z ciekawości, dlaczego e#w wyjaśnieniu?
Magic Octopus Urn
1
@carusocomputing To komentarz, więc możesz uruchomić samo wyjaśnienie. Nie jest to naprawdę konieczne, ale ¯ \ _ (ツ) _ / ¯
Business Cat
1
@carusocomputing #nie jest komentarzem w CJam - sourceforge.net/p/cjam/wiki/Basic%20operators/#number-sign - nawet jeśli jest w wielu innych językach. Ponieważ CJam jest językiem gry w golfa, wszystkie jednoznakowe komendy są używane do funkcji odpowiednich do gry w golfa. Komentarze są przydatne tylko dla kodu bez golfa, więc używa sekwencji 2 znaków, uwalniając w ten sposób sekwencję jednego znaku dla czegoś innego
Joe
3

Python 2 , 152 147 143 140 bajtów

-1 bajt dzięki musicman523

n=input()
r=range(n)
r+=r[::-1]
for x,i in enumerate(r):a,b='/\\\/'[i<x::2];s=' '*(n+~i);print''.join((s+a*n)[:n-j]+(b*-~i+s)[j:]for j in r)

Wypróbuj online!

Działa to poprzez rąbanie wewnętrznych kolumn największego diamentu w celu uzyskania mniejszych, za pomocą [0,..,n,n,..,0]kontrolowania liczby kolumn do usunięcia.

Pręt
źródło
Możesz dostać jeden tani bajt, zmieniając r=r+nar+=
musicman523
3

Pyth, 35 32 bajtów

j.tsm+Jm.[yQS*"\/"k\ Sd_M_Js__BS

Zestaw testowy

Gotowe, aby zobaczyć, jak różnią się podejścia mojego i @ LeakyNun.

isaacg
źródło
3

Dyalog APL, 46

{⊃,/⍵∘{'/ \'[2+((-⍪⊖)⌽,-)(-⍺)↑∘.≥⍨⍳⍵]}¨(⌽,⊢)⍳⍵}
Randy MacDonald
źródło
Witamy w PPCG i fajna pierwsza odpowiedź! Widząc, jak to jest dfn, dodałem{} do twojej odpowiedzi, ponieważ muszą one zostać uwzględnione.
Kritixi Lithos
1

V. , 38 bajtów

Àá/Àá\ò2ÙlX$xòÍî
òYGpVæHÄÓ¯¨¯*Ü*©Ü/ ± 

Wypróbuj online!

nmjcman101
źródło