Nスラブスラッシュケーキ


23

正の整数Nを取り込むプログラムまたは関数を作成します。

Nが1の場合、出力

/\
\/

Nが2の場合、出力

/\/\
\/ /
/ /
\/

Nが3の場合、出力

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

Nが4の場合、出力

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

より大きなNの場合、パターンは継続し、Nがインクリメントされるたびに新しいレイヤーが追加されます。

  • 「出力」は、スラッシュパターンを印刷するか、文字列として返すことを意味します。
  • 出力では単一の末尾の改行が許可されます。
  • 出力の末尾のスペースは許可されますが、先頭のスペースは許可されません。

バイト単位の最短コードが優先されます。

回答:


10

Pyth、25バイト

j_+t.iJ*R"/ "SQ+L\\J*Q"/\

オンラインで試す:デモンストレーションまたはテストスイート

説明:

j_+t.iJ*R"/ "SQ+L\\J*Q"/\   implicit: Q = input number
             SQ             create the list [1, 2, ..., Q]
       *R"/ "               repeat "/ " accordingly to this numbers
      J                     assign this list of strings to J
               +L\\J        create a 2nd list, which contains the same strings
                            as in J, just with a "\" prepended
    .i                      interleave these two lists
   t                        remove the first element
                    *Q"/\   repeat the string "/\" Q times
  +                         append it to the list
 _                          reverse it
j                           print each string on a separate line

10

CJam、32 30 29 28バイト

ri_"/\ /"2/f*)@,\f>+_z..e>N*

ここでテストしてください。

私はレトが彼のCJamの答えをゴルフで手伝おうとしていたのですが、結局彼とは関係のない解決策になってしまいました。

説明

これは、出力の対称性を利用します。特に、出力が転置と同じであるという事実。

最初に、最初のN+1行を生成しますが、左端はありません。

ri       e# Read input and convert to integer N.
_        e# Duplicate.
"/\ /"2/ e# Push an array with two strings: ["/\" " /"]
f*       e# Repeat each of the two strings N times. That gives the first two rows.
)        e# Detach the second row.
@,       e# Pull up the other copy of N and turn into range [0 1 ... N-1].
\f>      e# For each element i in that range, discard the first i characters of
         e# the second row.
+        e# Add all those lines back to the first row.

これで、次のグリッドを表す文字列の配列ができました。

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

その転置は次のようになります。

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

一緒に、これらは私たちが必要とするすべての非スペース文字を持っています。デニスのradチップを使用して、対応する各文字ペアの最大値を取得することにより、2つのASCIIグリッドを1つに結合できます。2つのグリッドが異なるすべての位置で、一方にはスペースがあり(またはまったくない)、もう一方には探しているキャラクターがあります。ベクトル化された操作の1つのリストが他のリストよりも長い場合、長いリストの追加要素は単純に保持されます。これはまさに私たちが探しているものです。その他の場合、非スペース文字は常に2文字の最大値になります。

_z   e# Duplicate the grid and transpose it.
..e> e# For each pair of characters in corresponding positions, pick the maximum.
N*   e# Join the lines by linefeed characters.

7

Japt46 44 41 40バイト

Uo-U £Y?"\\/"sYv)+" /"pU-Y/2 :"/\\"pU} ·

オンラインでお試しください!

非ゴルフと説明

Uo-U mXYZ{Y?"\\/"sYv)+" /"pU-Y/2 :"/\\"pU} qR

プログラムの中核は、U * 2アイテムのリストを作成し、それぞれをパターンの1行にマッピングしてから、それらを改行で結合します。

Uo-U    // Build an array of all integers in the range [-U, U).
mXYZ{   // Map each item X and index Y in this array with the following function.
 ...
} qR    // Join the resulting array with newlines.

パターン自体については、次のように分割しました。

/\/\/\/\

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

ここでわかるように、これは3つの単純なパターンに変わります。最初のコードは最も簡単で、次のコードで生成されます:

Y? ... :  // If Y, the current index, is 0,
"/\\"pU   // return the pattern "/\" repeated U*2 times.

今、左半分。奇数インデックスはにマッピングする必要が\/あり、さらににマッピングする必要があるため、/次のコードを使用します。

"\\/"s  // Otherwise, slice the pattern "\/" at 
Yv)     //  if Y is even, 1; otherwise, 0.

これにより、右半分の方法が簡単になります。必要なことは /、数回繰り返すだけです。

" /"p  // Repeat the pattern " /"
U-Y/2  //  floor(U - (Y/2)) times.

提案を歓迎します!


5

GNU Sed、59

スコアには、「-nr」オプションの+2が含まれますsed

s|1|/\\|gp
y|/\\| /|
s| |\\|p
:
s|\\(..)|\1|p
s|/ |\\|p
t

このメタ回答に従って単項で入力してください。

テスト出力:

$ sed -nrf slantcake.sed <<< 111
/\/\/\
\/ / /
/ / /
\/ /
/ /
\/
$ 

4

CJam、36 35 34バイト

ri_"/\\"*N@,W%{'\'/@" /"*+_N\N}/;;

オンラインで試す

余分なものを指摘してくれた@NinjaBearMonkeyに感謝し;ます。

これは比較的洗練されていないように見えますが、私は他のいくつかのオプションを試しましたが、それらは短くなりませんでした。

説明:

ri_     Get input, convert to integer, and copy.
"/\\"   Pattern for first line.
*N      Repeat N times, and add a newline.
@,      Rotate N to top, and create [0 .. N-1] sequence.
W%      Invert sequence to [N-1 .. 0].
{       Loop over counts, creating two lines for each.
  '\      Leading character for first in pair of lines. Rest will be the same
          for both lines.
  '/      First character for repeated part.
  @       Rotate count to top.
  " /"    Repetitive pattern.
  *       Replicate it by count.
  +       Concatenate with '/.
  _       Copy whole thing for use as second in pair of lines.
  N\      Put a newline between the pair of lines.
  N       Add a newline after second line.
}/      End of loop over counts.
;;      Created an extra line, get rid of it.

1
これで、最後;の1つだけを削除できます。
NinjaBearMonkey

または;;;を交換してください +付き
GamrCorps

3

Python 2、80バイト

n=input()
print"/\\"*n
for i in range(n*2,1,-1):print"\\"*(1-i%2)+"/ "*(i/2+i%2)


2

Java-141バイト

もちろん最短ではありませんが、Javaソリューションがあると便利です。

String a(int a){String s="";int b=-1,c,e;for(a*=2;++b<a;){for(c=-1;++c<a;)s+=(e=b+c)>a?" ":e%2==0?"/":b==0||c==0?"\\":" ";s+="\n";}return s;}

非ゴルフ

String a(int a){
    String s ="";
    int b=-1,c,e;
    for (a*=2;++b < a;){
        for (c = -1 ; ++c < a ;)
            s+= (e=b+c)>a?" ": e%2==0? "/" : b==0||c==0? "\\" : " ";
        s+="\n";
    }
    return s;
}

入力

System.out.println(a(5));

出力

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


1

JavaScriptを、128の 125 123 114バイト

n=>{r='';for(i=0;i<n;i++)r+='/\\';for(j=0;j<2*n-1;j++){r+='\n'+(j%2?'':'\\');for(i=n-j/2;i>0;i--)r+='/ '}return r}

デゴルフ(ES5にも変換)+デモ:

function c(n) {
    r = '';
    for (i = 0; i < n; i++) r += '/\\';
    for (j = 0; j < 2 * n - 1; j++) {
        r += '\n' + (j % 2 ? '' : '\\');
        for (i = n - j / 2; i > 0; i--) r += '/ '
    }
    return r
}

alert(c(prompt()));


1

ルビー、50バイト

->n{s='/\\'*n
n.times{|i|puts s,?\\+s='/ '*(n-i)}}

テストプログラムで:

f=->n{s='/\\'*n
n.times{|i|puts s,?\\+s='/ '*(n-i)}}
f[gets.to_i]

ループは、i = 0からi = n-1までの反復ごとに2行を出力します。

2番目の行には、常に'\'niの発生率が続き'/ 'ます。

最初の行は前の反復の2番目の行と同じですが、'\'欠落しています(したがってs、前の反復の2番目の行を印刷するときにこの値を格納します)。

唯一の例外は反復ゼロで、これはに初期化sすることで処理されます'/\'*n


1

ジャバスクリプト(ES6)、107 104 100 98 97 91 90バイト

p=>{s=`/\\`.repeat(p++)+`
`;for(i=p;i>2;s+='\\'+o+o)o=`/ `.repeat(--i)+`
`;return s+'\\/'}

最初の投稿はこちら!

使用されて いましたが、現在は Rubyに似ています。Array(len).join(str) String.repeat(len)operator*(str,len)

ゴルフをしていない:

len => {
    var str = `/\\`.repeat(len++) + '\n';

    for (var i = len, mid; i > 2; str += '\\' + mid + mid) {
        mid = `/ `.repeat(--i) + '\n';
    }

    return str + '\\/';
}


おかげで:
107 => 104バイト:@insertusernamehere
97 => 90バイト:@ user81655


1
3バイト節約できますp=>{s=Array(++p).join('/\\')+'\n';for(i=p;i>2;i--,s+='\\'+o+o)o=Array(i).join('/ ')+'\n';return s+'\\/'}
insertusernamehere

回答は非常に似ていましたが、あなたの回答の後に投稿されたため、削除しました。
user81655

@ user81655あ、すみません。repeat方法を教えてくれてありがとう。
-usandfriends

1

Python 2、66バイト

n=input();b=1
print'/\\'*n
while~-n+b:print'\\'*b+'/ '*n;b^=1;n-=b

とても簡単です。値は、n数ある/ライン上、およびb行で始まるかどうかを言います\。の値はb0と1の間で交互になり、n2番目のステップごとに減少します。い終了条件は、のときに停止しn=1, b=0ます。execループの代替には、のエスケープがたくさん必要になるという問題があります"'\\\\'"

このアプローチが単一の数字を使うより短いことに驚いたk=2*n+b。これは68バイトです。

k=2*input()+1
print k/2*"/\\"
while k>2:print k%2*'\\'+k/2*'/ ';k-=1

別の戦略ではprint、トップラインの個別の戦略を避けることができますが、簡潔な方法は見当たりませんでした。


1

Minkolang 0.14、46バイト

これはゴルフができると確信していますが、ここは午前4時で、寝る必要があります。

n$z"/\"z$D$OlOz[" /"zi-$Dlr$d"\"zi1+-3&5$X$O].

ここで試してみてください。

説明

n$z               Take number from input (n) and store it in the register (z)
   "/\"           Push these characters (in reverse)
       z$D        Push register value and duplicate the whole stack that many times
          $O      Output whole stack as characters
            lO    Output newline

z                                   Push n from register
 [                                  Open for loop that repeats n times
  " /"                              Push these characters (in reverse)
      zi-                           n - loop counter
         $D                         Pop k and duplicate whole stack k times
           l                        Push 10 (for newline)
            r                       Reverse stack
             $d                     Duplicate whole stack
               "\"                  Push this character
                  zi1+-             0 if n = loop counter + 1, truthy otherwise
                       3&           Do the next three characters if top of stack is 0
                         5$X        Dump the bottom-most five items of the stack
                            $O      Output whole stack as characters
                              ].    Close for loop and stop

1

バッチ、121バイト

@echo off
set/an=%1-1
if %1==1 (echo /\%2) else call %0 %n% /\%2
set a=/\%2
echo \%a:\= %
if not \%2==\ echo %a:\= %

または、単項が許容される場合、107バイト:

@echo off
set a=%1
echo %a:1=/\%
:a
echo \%a:1=/ %
set a=%a:~1%
if not %a%1==1 echo / %a:1=/ %&goto a

適切な数の1で呼び出します。


0

Matlab、122バイト

M=2*input('');
z=zeros(M);[y,x]=ndgrid(1:M);
z(~mod(x+y,2)&x+y<M+3)=1;v=2-mod(1:M,2);
z(1,:)=v;z(:,1)=v;disp([15*z.^2+32,''])

0

Haskell、99バイト

長さが等しい2つのソリューション。

を呼び出しfます。

f n=mapM_ putStrLn$[[x?y|x<-[0..2*n-y-0^y]]|y<-[0..2*n-1]]
x?y|mod(x+y)2==0='/'|x*y==0='\\'|0<1=' '

そして

f n=mapM_ putStrLn$[[x?y|x<-[y..2*n-0^y]]|y<-[0..2*n-1]]
x?y|mod x 2==0='/'|mod y x==0='\\'|0<1=' '

0

ハスケル、96

f=g.(*2)
g m=unlines$t m(c"/\\"):[t n l|(n,l)<-zip[m,m-1..2]$c['\\':p,p]]
p=c"/ "
c=cycle
t=take

これは、実際には既存のHaskellソリューションと競合しません、文字列を出力する代わりに戻ることで5文字を節約ため。無限パターンアプローチが座標ベースのアプローチとどのように比較されるかを示すためだけに投稿しています。ノート:

  • p 長さを変えずにインライン化できます。
  • [t n l|(n,l)<-...]2を節約し(map(uncurry t)$...)ます。

0

セイロン、100

String s(Integer n)=>"\n".join{"/\\".repeat(n),for(i in 2*n+1..3)"\\".repeat(i%2)+"/ ".repeat(i/2)};

これは、「名前付き引数リスト」join(名前付き引数なし、代わりに反復可能な内包表記)、およびいくつかの用途を特徴としていますString.repeat(その1つは実際には「奇数のみを含める」という意味i)を特徴としています。

フォーマット済み:

String s(Integer n) =>
        "\n".join{
            "/\\".repeat(n),
            for (i in 2*n + 1 .. 3)
                "\\".repeat(i % 2)
                        + "/ ".repeat(i / 2)
        };

0

PHP、117バイト

<?$n=$argv[1];$r=str_repeat;echo$r("/\\",$n);for(;$i++<$n*2-1;)echo"\n".($i%2?"\\":'').$r("/ ",$n-floor(($i-1)/2));?>

通知がオフになり、入力がコマンドラインから取得されると仮定します。

ゴルフをしていない:

<?php
error_reporting(E_ALL & ~E_NOTICE);

$n = $argv[1];
$r='str_repeat';
echo $r("/\\",$n);
for(;$i++<$n*2-1;){
    echo"\n".(($i%2)?"\\":'') . $r("/ ",$n-floor(($i-1)/2));
}
?>

コメントは大歓迎です:)

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.