ASCIIデッキを扱う


13

決定的なASCIIカードチャレンジは、これまでに一度もありませんでした。したがって、次のASCIIカードのデッキを使用します。

.------..------..------..------..------..------..------..------..------..------..------..------..------.
|2.--. ||3.--. ||4.--. ||5.--. ||6.--. ||7.--. ||8.--. ||9.--. ||T.--. ||J.--. ||Q.--. ||K.--. ||A.--. |
| (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) || (\/) |
| :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: |
| '--'2|| '--'3|| '--'4|| '--'5|| '--'6|| '--'7|| '--'8|| '--'9|| '--'T|| '--'J|| '--'Q|| '--'K|| '--'A|
'------''------''------''------''------''------''------''------''------''------''------''------''------'
.------..------..------..------..------..------..------..------..------..------..------..------..------.
|2.--. ||3.--. ||4.--. ||5.--. ||6.--. ||7.--. ||8.--. ||9.--. ||T.--. ||J.--. ||Q.--. ||K.--. ||A.--. |
| :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: |
| :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: || :\/: |
| '--'2|| '--'3|| '--'4|| '--'5|| '--'6|| '--'7|| '--'8|| '--'9|| '--'T|| '--'J|| '--'Q|| '--'K|| '--'A|
'------''------''------''------''------''------''------''------''------''------''------''------'
.------..------..------..------..------..------..------..------..------..------..------..------..------.
|2.--. ||3.--. ||4.--. ||5.--. ||6.--. ||7.--. ||8.--. ||9.--. ||T.--. ||J.--. ||Q.--. ||K.--. ||A.--. |
| :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: || :/\: |
| (__) || (__) || (__) || (__) || (__) || (__) || (__) || (__) || (__) || (__) || (__) || (__) || (__) |
| '--'2|| '--'3|| '--'4|| '--'5|| '--'6|| '--'7|| '--'8|| '--'9|| '--'T|| '--'J|| '--'Q|| '--'K|| '--'A|
'------''------''------''------''------''------''------''------''------''------''------''------''------'
.------..------..------..------..------..------..------..------..------..------..------..------..------.
|2.--. ||3.--. ||4.--. ||5.--. ||6.--. ||7.--. ||8.--. ||9.--. ||T.--. ||J.--. ||Q.--. ||K.--. ||A.--. |
| :(): || :(): || :(): || :(): || :(): || :(): || :(): || :(): || :(): || :(): || :(): || :(): || :(): |
| ()() || ()() || ()() || ()() || ()() || ()() || ()() || ()() || ()() || ()() || ()() || ()() || ()() |
| '--'2|| '--'3|| '--'4|| '--'5|| '--'6|| '--'7|| '--'8|| '--'9|| '--'T|| '--'J|| '--'Q|| '--'K|| '--'A|
'------''------''------''------''------''------''------''------''------''------''------''------''------'

2つの整数を取り、pそしてq入力として; ここpで、プレーヤーqの数と各プレーヤーが取得するカードの数です。

  • カードのデッキをランダムにシャッフルします(これはあいまいですが、すべてのカードが同じ場所に一度出現する可能性が等しくなければならないことを意味します)。
  • プレーヤーごとに1ラウンドのカードを配り、q各行にpカードの列を出力します。

ルール:

  • 結果は一様にランダムになり、各カードはどこにでも同じように表示される可能性があります。
  • これが0 < p*q <= 52 and p < 10満たされないシナリオでは、未定義の動作が発生する可能性があります。
  • qpごとのカードでカードの行を出力する必要があります。
  • 各列は | (スペースで囲まれたパイプ文字)で区切る必要があります。これとは異なる文字を選択した場合は、その理由を説明してください。ここの周囲のスペースはオプションではありません。
  • 各行の間に1つ以上の改行が必要です。1つ以上は許容されますが、0は許容されません(1つの改行は、デフォルトでその改行を意味します)。
  • 各行には、「Player N」の形式で所有者のラベルを付ける必要があります(0または1のインデックスが適切です)。
  • 1つのカードが複数回表示されることはありません。
  • T 十のためです。

例:

関数(p=1,q=1):

Player 1 # Can also be 0.
.------.
|2.--. |
| (\/) |
| :\/: |
| '--'2|
'------'

関数(p=2,q=1):

Player 1 | Player 2 # Can also be "Player 0 | Player 1"
.------. | .------.
|2.--. | | |T.--. |
| (\/) | | | (\/) |
| :\/: | | | :\/: |
| '--'2| | | '--'T|
'------' | '------'

関数(p=2,q=2):

Player 1 | Player 2 # Can also be "Player 0 | Player 1"
.------. | .------.
|J.--. | | |3.--. |
| (\/) | | | :/\: |
| :\/: | | | :\/: |
| '--'J| | | '--'3|
'------' | '------'
.------. | .------.
|8.--. | | |6.--. |
| :(): | | | :/\: |
| ()() | | | (__) |
| '--'8| | | '--'6|
'------' | '------'

http://patorjk.com/software/taagのフォントに対する芸術的功績


5
patorjk.com/software/taagで見つけたカードから多くのカードチャレンジを投稿しますか?

1
Soooo ...このサイトを「使用」して結果を出力できますか?
J42161217

1
つまり 、最後のテストケースでpatorjk.com/software/taag / ...を出力するプログラムを作成できますか?
J42161217

5
また、Each row must have 1 or more newlines inbetween them, more than one is acceptable, 0 is not....しかし、テストケースにはカード間に改行がありません..?
完全に人間の

1
ASCIIカードにはほぼ1つの課題がありました。私が投稿したプレイ時間です。
sergiol

回答:


6

木炭142の 133 125バイト

NθFN«F¬¬ι«→↑×⁶θ| »Player IιFθ«↙↓.↓⁴←'←⁶↑'↑⁴.P⁶↓≔‽⁵²εW№υε≔‽⁵²ε⊞υε≔§”w↘τ[⁵PkxτG”εδδ.--.¶✂”{➙aETê;s∨Hμ⁼⎚↑Z~SÀd~⌀Tê”﹪ε⁴φ⁴'--'δ↘

オンラインでお試しください!リンクは、コードの詳細バージョンです。編集:ランダムサンプリングコードを改善して9バイトを節約しました。スーツの印刷コードを改善して、さらに8バイトを節約しました。説明:

Nθ

カードの数を読み取りqます。

FN«

各プレーヤーをループします。

F¬¬ι«→↑×⁶θ| »

これが最初のプレーヤーでない場合は、前のプレーヤーとこのプレーヤーの間の垂直線を印刷します。

Player Iι

プレーヤー番号を印刷します。

Fθ«

各カードをループします。

↙↓.↓⁴←'←⁶↑'↑⁴.P⁶↓

カードの端を印刷します。

≔‽⁵²εW№υε≔‽⁵²ε⊞υε

まだ選択されていないカードインデックスを選択し、選択したカードインデックスのリストに追加します。

≔§”w↘τ[⁵PkxτG”εδδ

有効なカードランクの文字列に周期的にインデックスを付けて、カードのランクを選択して印刷します(2-9, T, J, Q, K, A)。

.--.¶

スーツの上部を印刷します。

✂”{➙aETê;s∨Hμ⁼⎚↑Z~SÀd~⌀Tê”﹪ε⁴φ⁴

文字列にスライスしてスーツの中央を印刷します。スライスは4を法とするカードインデックスで始まり、文字列がなくなるまで(またはf= 1000番目の文字に達するまで)4番目ごとに文字を取得します。4と13は互いに素であるため、これにより52枚すべてのカードが可能になります。

'--'δ↘

スーツの底とランクのコピーを印刷し、ランクのコピー、次のカードの開始、または分割線の開始のいずれかからそれほど離れていない点に移動します次のプレーヤー。


サンドボックスでこれを見たとき、デッキを印刷するのはkcの挑戦でしたが、102バイトかかりました:オンラインで試してみてください!リンクは、コードの詳細バージョンです。
ニール

3

Python 2、357バイト

from random import*
p,q=input()
A,V=':/\:',':\/:'
c=sample([(""".------.
|%s.--. |
| %s |
| %s |
| '--'%s|
'------'"""%(n,s,t,n)).split('\n')for s,t in('(\/)',V),(A,V),(A,'(__)'),(':():','()()')for n in'123456789TJQKA'],p*q)
print' | '.join('Player '+`i`for i in range(p))
for i in range(0,p*q,p):print'\n'.join(map(' | '.join,zip(c[i:i+p][0],c[i:i+p][1])))

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

私は何も考えていません。



3

JavaScript(ES6)、328 ... 312バイト

カリー化構文の入力を受け取ります(p)(q)。プレーヤーには0のインデックスが付けられます。

p=>g=(q,i=p*q*6,d=[...Array(52).keys(a=`:\\/:,(__),()(),(\\/),:/\\:,:():, | ,
,.3.,|0.--. |,| 1 |,| 2 |,| '--'0|,'3',Player 4`.split`,`)].sort(_=>Math.random()-.5))=>i--+p?g(q,i,d)+a[i%p?6:7]+a[i<0?14:i/p%6|8].replace(/\d/,c=>['TJQKA'[j=x>>2]||j-3,a['3454'[x&=3]],a[x%3],'------',p+i][c],x=d[i%p+p*(i/p/6|0)]):''

デモ

どうやって?

これは再帰関数であり、出力を下から上に構築します。カードが描かれる主要部分の間に、にi初期化され、p*q*6に達するまで減分されます0。次に、iに達するまでさらにデクリメントしてヘッダーを描画します-p

ASCIIアートは、配列に格納される小さな断片に分割されa[]ます。次の表では、のコンテンツを説明しますa[]。これにより、残りのコードが理解しやすくなります。

 Index | Content    | Description
-------+------------+------------------------------------------------
    0  | ":\\/:"    | bottom of 'diamonds' and 'hearts'
    1  | "(__)"     | bottom of 'spades'
    2  | "()()"     | bottom of 'clubs'
    3  | "(\\/)"    | top of 'hearts'
    4  | ":/\\:"    | top of 'diamonds' and 'spades'
    5  | ":():"     | top of 'clubs'
    6  | " | "      | player separator
    7  | "\n"       | line-feed
    8  | ".3."      | card row #1, "3" --> "------"
    9  | "|0.--. |" | card row #2, "0" --> symbol of card value
   10  | "| 1 |"    | card row #3, "1" --> top of color ASCII art
   11  | "| 2 |"    | card row #4, "2" --> bottom of color ASCII art
   12  | "| '--'0|" | card row #5, "0" --> symbol of card value
   13  | "'3'"      | card row #6, "3" --> "------"
   14  | "Player 4" | header, "4" --> player ID

フォーマットおよびコメント

p => g = (                                // p = number of players
  q,                                      // q = number of cards
  i = p * q * 6,                          // i = counter
  d = [...Array(52).keys(                 // d = deck
    a = `:\\/:,(__),...`.split`,`         // a = ASCII art pieces (truncated, see above)
  )].sort(_ => Math.random() - .5)        // shuffle the deck
) =>                                      //
  i-- + p ?                               // if i is greater than -p:
    g(q, i, d) +                          //   do a recursive call and append ...
    a[i % p ? 6 : 7] +                    //   separator or line-feed
    a[i < 0 ? 14 : i / p % 6 | 8]         //   header or card row
    .replace(/\d/, c => [                 //   where digits are replaced with:
        'TJQKA'[j = x >> 2] || j - 3,     //     0: symbol of card value
        a['3454'[x &= 3]],                //     1: top of color ASCII art
        a[x % 3],                         //     2: bottom of color ASCII art
        '------',                         //     3: horizontal border
        p + i                             //     4: player ID
      ][c],                               //
      x = d[i % p + p * (i / p / 6 | 0)]  //   x = current card with: bits 0-1 = color
    )                                     //                          bits 2-5 = value
  :                                       // else:
    ''                                    //   stop recursion

2

Pythonの2382の 358 346 338 332バイト

from random import*
p,n=input()
d=zip([0,1,2,3]*13,'23456789TJQKA'*4)
shuffle(d)
C=""".------.
|%s.--. |
| %s |
| %s |
| '--'%s|
'------'"""
print' | '.join('Player '+`i`for i in range(p))
exec"for l in zip(*[(C%(v,'(:::\/(//\)\):::'[s::4],':((:\_)\/_(/:)):'[s::4],v)).split('\\n')for s,v in d[:p]]):print' | '.join(l)\nd=d[p:]\n"*n

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


2

SOGL V0.12、106のバイト

E⁽⁰⅜║(Ηe─t¦4»\$²‘8n{"1<ω⅛┘‘4n╬¡;4n33žASUjk"TJQKA”+{a;22žF75ž}}'#δ№{ψ⌡≤οc+C}c_.∫:"▓⅛▲ŗ‘Κ⁽e{≤+};H?;lƧ |Γ∙┼;┼

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

カード生成:

...‘                     push "(\/):\/::/\::\/::/\:(__):():()()" - the suits
    8n                   split to line lengths of 8 - individual suits
      {                  for each suit
       "...‘               push ".---| .-|   " - a quarter of a suit
            4n             split to line lengths of 4 - [".---", "| .-", "|   "]
              έ           quad palindromize - empty card
                ;          get the suit on top
                 4n        split to line lengths of 4
                   33ž     insert in the card at [3; 3]
                      A    save on variable A - card template
SU                         push "1234567890"
  jk                       remove the first and last digits
    "TJQKA”+               append "TJQKA"
            {         }    for each number - "23456789TJQKA"
             a               load the template
              ;22ž           at [2; 2] insert the current number
                  F75ž       at [7; 5] insert the current number

シャッフリング:

'#             push 52
  δ            lower range - [0, 1, ..., 50, 51]
   №           reverse - [51, 50, ..., 1, 0]
    {       }  for each, pushing the current item
     ψ           get a random number from 0 to ToS (inclusive)
      ⌡          that many times
       ≤           put the first item of the stack on the top
        οc+C     prepend that to the variable C, predefined with an empty array

対処:

c_              push Cs contents on the stack - the stack is now a mess of cards
  .∫            repeat input times - each player - pushing the current player number
    :             duplicate the number
     "..‘         push "player "
         Κ        prepend "player " to the number
          ⁽       uppercase the 1st letter
           e{  }  repeat 2nd input times
             ≤      put the first stack item on the top
              +     append it to "Player X" vertically (making an array)
;                 get the other copy of the player number
 H?               if POP-1 (aka if it's not 1)
   ;                swap the top 2 items - the current collumn and all the previous ones (by then they've been joined together)
    l               get its (vertical) length
     Ƨ |            push " |"
        Γ           palindromize - [" | "]
         ∙          multiply " | " vertically that length times
          ┼         append it horizontally (to the previous collumns)
           ;┼       append the current collumn

2

ルビー、262バイト

->p,q{a=[*0..51].shuffle
puts ["Player %d"]*p*(d=" | ")%[*1..p],(1..q*6).map{|i|(["'------'
.------.
|%X.--. |
| %s |
| %s |
| '--'%X|".split($/)[i%6]]*p*d%a[i/6*p,p].map{|j|["(\\/):()::/\\:"[u=j%4*4-4,4],":\\/:()():\\/:(__)"[u,4],j/4][i%3]}).tr("01BC","TJQK")}}

フォローするのは難しいが、短い!

ルビー、279バイト

->p,q{puts [*1..p].map{|k|"Player #{k}"}*" | "
a=[*0..51].shuffle
(q*6).times{|i|puts [".------.
|%s.--. |
| %s |
| %s |
| '--'%s|
'------'".split($/)[i%6]]*p*" | "%a[i/6*p,p].map{|j|[":\\/:()():\\/:(__)"[u=j%4*4-4,4],("%X"%(j/4)).tr("01BC","TJQK"),"(\\/):()::/\\:"[u,4]][i%3]}}}

各行の形式を作成し、%演算子を使用しsprintfてデータを設定します。

カードの値が3行ごとに表示されるという事実は便利です。カードの値は、数字がに01BC置き換えられた16進数で表示されますTJQK

保存されたダイヤモンドとスペードの上部が同じであるがために2バックを追加することを考慮してスーツのシンボルから4バイト-4の終わりにj%4*4-4スーツコードあり-4 0 4または8ここで、[-4,4]第4回最後の文字を開始手段4つの文字ストリング。

おそらくさらに数バイトを節約できます。プレーヤーの識別のためにコードを繰り返す必要はisいです。


2

PHP、509バイト

<?$hu='(\/}';$hv=$dv=':\/:';$du=$su=':/\:';$sv='(__)';$cu=':():';$cv='()()';$q="------";$t=$argv[1];foreach([h,d,s,c]as$a)foreach([2,3,4,5,6,7,8,9,T,J,Q,K,A]as$b)$c[]=[$b,$a];shuffle($c);$h=$a=0;for(;$a<$t;$a++)$e[]="Player $a";$f[]=join(" | ",$e);for($g=$argv[2];$g--;){$p=$i=$k=$l=$m=$r=[];$j=$h+$t;for(;$h<$j;$h++){$n=$c[$h][0];$o=$c[$h][1];$p[]=".$q.";$i[]="|$n.--. |";$k[]="| ${$o.u} |";$l[]="| ${$o.v} |";$m[]="| '--'$n|";$r[]="'$q'";}foreach([p,i,k,l,m,r]as$b)$f[]=join(" | ",${$b});}echo join('
',$f);

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

これはコードゴルフでの私の最初の試みであるため、おそらく大幅に改善できます。どこかから始めなければならないと思いました。:)


1

Java(OpenJDK 8)784 835 843 826 815 781 775バイト

String k(String s){return s.replaceAll("...$","\n");}
p->q->{int c=0,l=0,s[]=new int[p*q],i=0,j,t,b;java.util.List e=new java.util.Stack();String v="TJQK",o="",n[]=new String[p*q],x=o;for(;i<p;o+="Player "+i+++" | ",x+=v);o=k(o);for(i=0;i<q;i++){o=k(o+x.replace(v,".------. | "));for(j=0;j<p;j++){do{t=(int)(Math.random()*13)+1;b=(int)(Math.random()*4);}while(e.contains(t+""+v.charAt(b)));e.add(t+""+v.charAt(b));s[c]=b;n[c]=t<2?"A":t<10?""+t:""+v.charAt(t-10);o+="|2.--. | | ".replace("2",n[c++]);}o=k(o);for(j=0;j<p;j++,l++)o+="| "+(s[l]<1?"(\\/)":s[l]<3?":/\\:":":():")+" | | ";o=k(o);for(j=0;j<p;j++)o+="| "+(s[i*p+j]<2?":\\/:":s[i*p+j]<3?"(__)":"()()")+" | | ";o=k(o);for(j=0;j<p;)o+="| '--'2| | ".replace("2",n[i*p+j++]);o=k(k(o)+x.replace(v,"'------' | "));}return o;}

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

なぜダウン票、仕様に準拠しています


また、作成する代わりに別のメソッドを作成する必要がありますFunction<String,String>。後者は非常に高価です。作成時と使用時の両方。
オリビエグレゴワール

私はダウンボットが元のバグのある回答に対するものであると考えていますが、電流は正しいようですので、それを無効にすることを支持しました。ゴルフのちょっとしたこと:かっこはで削除できますn[c]=t<2?"A":t<10?""+t:""+"TJQK".charAt(t-10)for(j=0;j<p;j++){o+=...;l++;}することができますfor(j=0;j<p;l++,j++)o+=...;; あなたのことができreturn o;代わりにSystem.out.print(o);第二を使用して、Function代わりにConsumer,y=p*qは削除でき、のp*q代わりに直接2回使用できますy。そこより多くのゴルフに、疑いもなくですが、私は...今その権利を検討する時間がありません
ケビンCruijssen

1
@KevinCruijssen実際、いや。最初の編集の、スペースを削除して1文字の変数名を使用する以外に「ゴルフに労力をかけない」ことを宣言しました。私の推測では、Roberto GrahamはJavaでのゴルフのヒントを完全に読み直す必要があります。ポイントは、それが実際にチャレンジの仕様に準拠しているが、code-golfタグの仕様には準拠していないということです。
オリビエグレゴワール

さらにゴルフできることをどのように知っていますか?この答えを見た後、あきらめたとき、私は約400バイトでしたが、残りの約50バイトはそれを終えるために見積もっていました。450バイト対850、ゴルフはほとんど関与していません。
オリビエグレゴワール

s[l]<2?":/\\:":s[l]<3?":/\\:"可能s[l]<3?":/\\:"s[i*p+j]<1?":\\/:":s[i*p+j]<2?":\\/:"することができs[i*p+j]<2?":\\/:"。@OlivierGrégoireそして、私はそれがほとんど半分になる可能性が高いことを知っているので、私は下票を理解しています。しかし、これはほとんど経験不足であり、実際にすべてのヒントを複数回読んでいるわけではありません。私が過去に行った回答のいくつかのことも、これはJavaにとって特に簡単な挑戦ではありません。ところで、400〜450バイトの回答がある場合、それを別の回答として投稿してみてはいかがでしょうか(大幅に異なる場合)。あなたは私の賛成票を持っているでしょう。;)
ケビンクルーッセン

1

Python 3、332バイト

from random import*
P=lambda x:print(*x,sep=' | ')
R=range
def f(p,c):
 P(f"Player {i}"for i in R(p))
 d=[f".------.,|{n}.--. |,| {a[:4]} |,| {a[4:]} |,| '--'{n}|,'------'".split(",")for a,n in sample([*zip(r':/\:(__) (\/):\/: :/\::\/: :():()()'.split()*13,'A23456789TJQK'*4)],p*c)]
 for i in R(c):
  for t in zip(*d[i::c]):
   P(t)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.