बच्चों के कार्ड में फेरबदल


12

बच्चों के लिए ताश के पत्तों की छत बनाना कठिन होता है, इसलिए उन्हें यथासंभव अच्छी तरह से उचित छत पाने के तरीकों का पता लगाना चाहिए।

ऐसा करने का एक तरीका है जो उचित परिणाम देता है:

  1. शीर्ष कार्ड को बाहर निकालें और इसे डेक में एक यादृच्छिक स्थान डालें
  2. नीचे के कार्ड को बाहर निकालें और डेक में एक यादृच्छिक स्थान पर डालें
  3. जारी रखें जब तक आप मानते हैं कि यह काफी अच्छा है।

ध्यान दें कि आप कभी भी कार्ड को ऊपर या नीचे के स्थान पर नहीं डालेंगे, इसे डेक में कहीं रखा जाना चाहिए ।


इसके बजाय कार्ड फेरबदल की, हम अक्षरांकीय अक्षर शफ़ल होगी: 0-9, A-J, a-j, q-zऔर Q-Z

नीचे दिखाए गए स्ट्रिंग से शुरू करें और ऊपर वर्णित वर्णों को फेरबदल करें। आप चुन सकते हैं कि आप अनंत रूप से फेरबदल जारी रखना चाहते हैं या कार्ड के 100 चक्कर काट रहे हैं (ऊपर से 100 कार्ड और नीचे से 100 कार्ड)।

0123456789abcdefghijqrstuvwxyzABCDEFGHIJQRSTUVWXYZ

पात्रों को किनारे किए जाने को प्रदर्शित करने की चुनौती है। प्रत्येक "फेरबदल" (कार्ड निकालना और सम्मिलित करना) 0.25 और 0.35 सेकंड के बीच करना होगा।

नीचे gif एक उदाहरण आउटपुट दिखाता है:

यहाँ छवि विवरण दर्ज करें


यह इसलिए बाइट्स जीत में सबसे छोटा कोड है।


"क्यों आप की जरूरत नहीं है a-tके बजाय a-j, q-z?" क्योंकि यह केवल पात्रों का नहीं बल्कि कार्डों के सूट का चित्रण करेगा। और हाँ, 5 सूट हैं।


नोट: मैंने -चेंगल्स पर चेक मार्क का उपयोग बंद करने का फैसला किया है । प्रासंगिक मेटा पोस्ट यहाँ और यहाँ


5 सूट कैसे हैं?
TrojanByAccident

1
@TrojanByAccident पांच सेटों कार्ड (ASCII वर्ण) सूट से कर रहे हैं 0-9, A-J, a-j, q-zऔर Q-Z, प्रश्न के अनुसार।
mbomb007

और 50 कार्ड हैं, 52 नहीं। शायद बच्चों ने कुछ खो दिया है।
जैसें

@ mbomb007 मैं पूछ रहा था कि कार्ड के 5 सूट कैसे थे। जब तक मैं कुछ याद कर रहा हूँ, वहाँ केवल हुकुम, क्लब, दिल और हीरे हैं। यह 4. है
ट्रोजनबाय एक्सिडेंट

2
@TrojanByAccident यह कार्ड का उपयोग नहीं करता है। यह कार्ड के बजाय ASCII का उपयोग करता है। ये ASCII के पांच सूट हैं। कार्डों में फेरबदल करने के बजाय, हम
वर्णानुक्रमिक

जवाबों:


5

जावास्क्रिप्ट (ईएस 6), 192 188 185 बाइट्स

document.write('<pre id=o>')
s='ABCDEFGHIJQRSTUVWXYZ'
a=[0,...123456789+s.toLowerCase()+s]
setInterval('o.innerText=a.join``;a.splice(Math.random(s^=1)*48+1,0,s?a.pop():a.shift())',250)

संपादित करें: @ L.Serné के लिए 4 बाइट्स धन्यवाद सहेजे गए। सहेजे गए 3 बाइट @Arnauld की बदौलत।


मुझे लगता है कि यदि आप कॉल e^=1के खाली कोष्ठक के अंदर जाते हैं तो आप कुछ बाइट्स बचा सकते हैं Math.random। जब आप कोई विशेष वर्ण पास नहीं कर रहे हैं, तो आप टेक्स्टकॉन्टेंट को इनर HTML में भी बदल सकते हैं। आप कॉल के eअंदर 0 पर भी सेट कर सकते हैं toLowerCase
ल्यूक

आप वास्तव में जरूरत नहीं है e। आप बस इस्तेमाल कर सकते हैं s। (क्योंकि ('some_string'^1) === 1)
अरनौलड

4

MATL, 62 58 56 बाइट्स

2 बाइट्स @Luis की बदौलत बच गए

4Y2'A':'J'tk'Q':'Z'tk&h`48YrQJh&)@o?l&)wb}wO&)]&htD3&XxT

यह संस्करण अनिश्चित काल तक चलेगा। MATL ऑनलाइन पर ऑनलाइन डेमो आज़माएं , एक प्रयोगात्मक ऑनलाइन दुभाषिया जो गतिशील आउटपुट का समर्थन करता है। यह 30 सेकंड (ऑनलाइन संस्करण द्वारा लगाई गई एक कठिन सीमा) के लिए चलेगा यदि यह पहले नहीं मारा गया हो।

व्याख्या

4Y2     % Predefined literal for the characters '0'...'9'
'A':'J' % Create an array of the characters 'A'...'J'
tk      % Duplicate and make lowercase
'Q':'Z' % Create an array of the characters 'Q'...'Z'
tk      % Duplicate and make lowercase
&h      % Horizontally concatenate everything
`       % Do...while loop
  48YrQ % Determine a random integer between 2 and 49 
  Jh&)  % Split the string at the selected location
  @o?   % If this is an odd time through the loop
    l&) % Grab the first character
    wb  % Move it to the middle of the stack of three strings
  }     % Else...
    wO&)% Grab the last character and move it to the middle of the stack
  ]     % End of if statment
  &h    % Horizontally concatenate all strings on the stack
  tD    % Duplicate and display the current string
  3&Xx  % Pause for 0.3 seconds and clear the display
  T     % Push a literal TRUE to the stack to make this an infinite loop
        % Implicit end of while loop

4

पर्ल, 117 बाइट्स

@F=(0..9,a..j,"q"..z,A..J,Q..Z);{print"\r",@F;splice@F,++$|+rand(@F-2),0,++$v%2?shift@F:pop@F;select$,,$,,$,,.3;redo}

इसे चलाने के लिए:

perl -e '@F=(0..9,a..j,"q"..z,A..J,Q..Z);{print"\r",@F;splice@F,++$|+rand(@F-2),0,++$v%2?shift@F:pop@F;select$,,$,,$,,.3;redo}'

स्पष्टीकरण:
- @F=(0..9,a..j,"q"..z,A..J,Q..Z)प्रारंभिक डेक बनाता है, और इसे इसमें संग्रहीत करता है @F
- हमेशा के लिए {...;redo}निष्पादित करता ...है।
- splice@F,++$|+rand(@F-2),0,++$v%2?shift@F:pop@Fवैकल्पिक रूप से डेक से पहले / अंतिम तत्व को हटा दें और एक यादृच्छिक स्थिति में डालें (जबकि बढ़ते हुए $|, ताकि प्रिंट बफ़र्ड न हों),
- print"\r",@Fडेक को प्रिंट करता है,
- select$,,$,,$,,.30.3 सेकंड के लिए सोता है (पर्ल की sleepनींद कम से कम नहीं हो सकती है 1 सेकेंड),


संख्यात्मक सीमा है 0..9, नहीं 1..9, और आपका प्रारंभिक डेक क्रम से बाहर है :)
ardnew

@ardnew वास्तव में, धन्यवाद। जब मैंने यह कोड लिखा था तो मैं थक गया होगा। यह वैसे भी तय हो गया है :)
दादा

4

पायथन 3, 199 196 192 186 बाइट्स

TuukkaX के लिए 4 बाइट्स, और FlipTack के लिए 6 बाइट्स के लिए धन्यवाद बचा लिया!

import time,random
s="abcdefghijqrstuvwxyz";s="0123456789"+s+s.upper()
f=0
while 1:print(end="\r"+s);time.sleep(.3);s,e=s[1^f:50-f],s[f and-1];i=random.randint(1,49);s=s[:i]+e+s[i:];f^=1

पायथन 3 के printफंक्शन का उपयोग पायथन 2 की तुलना में न्यूलाइन को दबाने के लिए करता है sys.stdout.write

शीर्ष और निचले कार्ड को स्थानांतरित करने के बीच स्विच करने के लिए एक फ्लिप-फ्लॉप चर का उपयोग करता है।

Ungolfed:

from random import randint
from time import sleep

string = "abcdefghijqrstuvwxyz"
string = "0123456789" + string + string.upper()
flip_flop = 0
while True:
    print("\r"+string,end="")
    sleep(0.3)
    string,char = string[not flip_flop:50-flip_flop], string[flip_flop and -1]
    position = randint(1,49)
    string = string[:position] + char + string[position:]
    f = not f

import random,timeछोटा होगा ?
FlipTack

@FlipTack हाँ, 6 बाइट्स कम, धन्यवाद!
बसुकक्सुआन

@ mbomb007 धन्यवाद, किया :-)
बसुकक्सुआन

3

सी, 290 285 बाइट्स

#include<stdio.h>
#include<time.h>
#define S(s,a,b){int p=rand()%48+1;clock_t c=clock()+300;while(c>clock());int x=d[s];for(int i=s;i a p;)d[i b]=d[i];d[p]=x;printf(d);}
main(){char d[]="0123456789abcdefghijqrstuvwxyzABCDEFGHIJQRSTUVWXYZ\r";srand(time(0));for(;;){S(0,<,++)S(49,>,--)}}

Ungolfed:

#include<stdio.h> // variadic(printf) functions without a valid prototype = UB
#include<time.h>  // required for the implementation-defined clock_t type
// note that <stdlib.h> isnt required for srand()/rand() because they are
//  validly declared implicitly
#define S(s,a,b) // macro function
{
    int p=rand()%48+1;     // get a random position within the array
    clock_t c=clock()+300; // get the time 300 milliseconds from now
    while(c>clock());      // wait for that time
    int x=d[s];            // save the s'th character in a tempvar
    for(int i=s;i a p;)    // shift everything in the array from p
        d[i b]=d[i];       // a determines the comparison: </>
                           // b determines the operation: ++/--
    d[p]=x;                // put the tempvar in its new position
    printf(d);             // print the modified string
} // note: the \r at the end makes it so the next printf overwrites it

main() // main entry point
{      // deck to shuffle below
    char d[]="0123456789abcdefghijqrstuvwxyzABCDEFGHIJQRSTUVWXYZ\r";
    srand(time(0)); // seed the random number generator
    for(;;)         // infinite loop
    {
        S(0,<,++)   // shuffle from the start of the deck
        S(49,>,--)  // shuffle from the end of the deck
    }
}

2

स्विफ्ट, 288 बाइट्स

import Darwin
var o=Array("0123456789abcdefghijqrstuvwxyzABCDEFGHIJQRSTUVWXYZ".characters)
while true{
print(String(o),terminator:"\r")
fflush(__stdoutp);{o.insert(o.removeLast(),at:$0())
o.insert(o.removeFirst(),at:$0()+1)}({Int(arc4random_uniform(UInt32(o.count-1)))})
usleep(300000)
}

स्विफ्ट में गोल्फ करना हमेशा एक चुनौती होती है, क्योंकि इसका एक विक्रय बिंदु अभिव्यंजकता है।


2

रूबी ( 138 119 बाइट्स)

f=0;a=[*0..9,*?a..?j,*?q..?z,*?A..?J,*?Q..?Z];loop{$><<a*''+?\r;a.insert(rand(48),f>0? a.shift : a.pop);f^=1;sleep 0.3}

@PaulPrestidge जितना छोटा नहीं है, लेकिन कम से कम मैं इसे समझता हूं .. यह जानने के लिए भी बहुत अच्छा है कि माणिक एक अंतहीन सुरंग की तरह है!



1

नूडल , नॉनकमेटिंग 41 बाइट्स

"Q…Z"A…J"q…z"a…j"0…9⁵⁺ḷçṛ47⁺1ɱɲOṃḃɲ49ḅṙḍq

कोशिश करो:)

यह काम किस प्रकार करता है

"Q…Z"A…J"q…z"a…j"0…9⁵⁺                    # Creates the string literal to be shuffled.
                      ḷçṛ47⁺1ɱɲO      ṙḍq # The main "infinite" loop that applies the animation.
                                ṃḃɲ49ḅ    # Sub-loop that acts like an if-statement that only runs every odd iteration of the loop.

"Q…Z                                      # Pushes the string literal "QRSTUVWXYZ".
    "A…J                                  # Pushes the string literal "ABCDEFGHIJ".
        "q…z                              # Pushes the string literal "qrstuvwxyz".
            "a…j                          # Pushes the string literal "abcdefghij".
                "0…9                      # Pushes the string literal "0123456789".
                    ⁵⁺                    # Add the five strings on the stack to make one string.
                      ḷ                   # Unconditionally loop the following code.
                       ç                  # Copy what is on the top of the stack, clear the screen, and then print the copy.
                        ṛ47               # Create a random integer from 0 to 47.
                           ⁺1             # Increment the number to get 1 - 48 such that will not be the top or bottom of the deck.
                             ɱ            # Push the number of times that the unconditional loop has ran.
                              ɲO          # Consume the counter and push on zero if is even and one if is odd.
                                ṃ         # Conditional loop that only passes if the top of the stack is truthy (if the counter is odd).
                                 ḃ        # Throws away the top of the stack.
                                  ɲ49     # Pushes the literal 49 in order to represent the top of the deck.
                                     ḅ    # Ends the conditional loop.
                                      ṙ   # Relocate an element in the string by using the two numbers on the stack (either 0 or 49 to the random number).
                                       ḍq # Delay for a quarter of second. (End of unconditional loop)

<div id="noodel" code='"Q…Z"A…J"q…z"a…j"0…9⁵⁺ḷçṛ47⁺1ɱɲOṃḃɲ49ḅṙḍq' input="" cols="50" rows="2"></div>

<script src="https://tkellehe.github.io/noodel/release/noodel-0.0.js"></script>
<script src="https://tkellehe.github.io/noodel/ppcg.min.js"></script>


यह गैर-प्रतिस्पर्धा क्यों है?
स्टीवी ग्रिफ़िन

@StewieGriffin मैंने चुनौती के बाद तक js parser की रिलीज़ को अंतिम रूप नहीं दिया। इससे पहले सभी कार्यक्षमता मौजूद थी, लेकिन मुझे नहीं पता था कि क्या यह मेरे लिए सही है कि मैं नूडल को प्रतिस्पर्धा करने की अनुमति दूं । तो, मैंने सुरक्षित मार्ग लिया :)
tkellehe

@ mbomb007, इसे ठीक करने के लिए धन्यवाद। मुझे एहसास नहीं था कि यह शीर्ष पर रखा गया था।
tkellehe

0

बैश, 170 बाइट्स

r(){((r=RANDOM%48+1));echo -n $c^;sleep .3;}
c=0123456789abcdefghijqrstuvwxyzABCDEFGHIJQRSTUVWXYZ
while r
do
c=${c:1:r}${c:0:1}${c:r+1}
r
c=${c:0:r}${c:49}${c:r:-1}
done

यहाँ '^' (पहली पंक्ति पर) का प्रतिनिधित्व करता है ctrl-m: कमांड-लाइन पर ctrl-v enterया संपादक के रूप में आपके संपादक के काम करने के तरीके (आपके संपादक के कामों को मानते हुए) के अनुसार दर्ज किया गया

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.