न्यूनतम पैडिंग के साथ परिवर्तन, लूप और प्रदर्शन पर हस्ताक्षर करें


17

इनपुट:

दो पूर्णांक: एक नकारात्मक, एक सकारात्मक।

आउटपुट:

पहली पंक्ति में सबसे कम उत्पादन पर। दूसरी पंक्ति में हमने उच्चतम और निम्नतम संख्या को हटा दिया है और सभी अलग - अलग संख्याएँ बदल दी हैं । तीसरी पंक्ति में हमने उच्चतम और निम्नतम संख्याओं को फिर से हटा दिया है और सभी अलग-अलग संख्याओं पर फिर से हस्ताक्षर किए हैं। आदि (नीचे दिए गए उदाहरण को चुनौती को स्पष्ट करना चाहिए।)

महत्वपूर्ण: इसके अलावा, हम रिक्त स्थान जोड़ते हैं ताकि एक कॉलम में संख्याएं सभी संरेखित हों (दाईं ओर)।
न्यूनतम संरेखण इस चुनौती का मुख्य हिस्सा है, इसका मतलब है कि आप हर एक संख्या को एक ही चौड़ाई नहीं बना सकते हैं। किसी स्तंभ की चौड़ाई उस विशिष्ट स्तंभ की सबसे बड़ी संख्या-चौड़ाई पर आधारित होती है (और संकेत-परिवर्तन के साथ क्रम संख्या को प्रति कॉलम चौड़ाई में कुछ विविधता देने के लिए होता है)।


उदाहरण के लिए:

Input: -3,6

Output:
-3,-2,-1, 0, 1, 2, 3, 4,5,6   // sequence from lowest to highest
 2, 1, 0,-1,-2,-3,-4,-5       // -3 and 6 removed; then all signs changed
-1, 0, 1, 2, 3, 4             // 2 and -5 removed; then all signs changed again
 0,-1,-2,-3                   // -1 and 4 removed; then all signs changed again
 1, 2                         // 0 and -3 removed; then all signs changed again
                              // only two numbers left, so we're done

जैसा कि आप ऊपर देख सकते हैं, रिक्त स्थान सकारात्मक संख्याओं में जोड़े जाते हैं, जब वे क्षतिपूर्ति करने के लिए ऋणात्मक संख्याओं के साथ एक कॉलम साझा करते हैं -(वही 2-अंकीय संख्याओं पर लागू होगा)।

चुनौती नियम:

  • इनपुट दो पूर्णांक होना चाहिए
    • आप मान सकते हैं कि ये पूर्णांक -99- 99(समावेशी) श्रेणी में हैं।
    • पहला पूर्णांक ऋणात्मक होगा, और दूसरा सकारात्मक होगा।
  • आउटपुट किसी भी उचित प्रारूप में हो सकता है, जब तक कि यह स्पष्ट नहीं है कि पंक्तियाँ और सही तरीके से संरेखित कॉलम हैं: I STDOUT; नई कहानियों के साथ स्ट्रिंग के रूप में लौटना; स्ट्रिंग्स की सूची के रूप में वापसी; आदि आपका फोन।
  • आउटपुट में अपनी पसंद का सीमांकक भी होना चाहिए (रिक्त स्थान, टैब, नई-पंक्तियों, अंकों या -) को छोड़कर : Ie ,; और ;और |; और X; आदि सभी स्वीकार्य सीमांकक हैं।
  • आउटपुट लाइनों में एक अग्रणी या अनुगामी सीमांकक नहीं हो सकता है।
  • आउटपुट में एक अनुगामी नई-पंक्ति हो सकती है, और किसी भी पंक्ति में अनुगामी रिक्त स्थान की संख्या हो सकती है।

सामान्य नियम:

  • यह , इसलिए बाइट्स जीत में सबसे छोटा जवाब है।
    कोड-गोल्फ भाषाओं को गैर-कोडगॉल्फिंग भाषाओं के साथ उत्तर पोस्ट करने से हतोत्साहित न करें। 'किसी भी' प्रोग्रामिंग भाषा के लिए यथासंभव संक्षिप्त उत्तर के साथ आने का प्रयास करें।
  • मानक नियम आपके उत्तर के लिए लागू होते हैं , इसलिए आपको उचित पैरामीटर, पूर्ण कार्यक्रमों के साथ STDIN / STDOUT, फ़ंक्शन / विधि का उपयोग करने की अनुमति है। तुम्हारा फोन।
  • डिफ़ॉल्ट लूपोल्स निषिद्ध हैं।
  • यदि संभव हो, तो कृपया अपने कोड के लिए एक परीक्षण के साथ एक लिंक जोड़ें।
  • इसके अलावा, यदि आवश्यक हो तो एक स्पष्टीकरण जोड़ें।

परीक्षण के मामलों:

Input: -3,6

Output:
-3,-2,-1, 0, 1, 2, 3, 4,5,6
 2, 1, 0,-1,-2,-3,-4,-5
-1, 0, 1, 2, 3, 4
 0,-1,-2,-3
 1, 2

Input: -1,1

Output:
-1,0,1
 0

Input: -2,8

Output:
-2,-1, 0, 1, 2, 3, 4, 5, 6,7,8
 1, 0,-1,-2,-3,-4,-5,-6,-7
 0, 1, 2, 3, 4, 5, 6
-1,-2,-3,-4,-5
 2, 3, 4
-3

Input: -15,8

Output: 
-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6,7,8
 14, 13, 12, 11, 10,  9, 8, 7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7
-13,-12,-11,-10, -9, -8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6
 12, 11, 10,  9,  8,  7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5
-11,-10, -9, -8, -7, -6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4
 10,  9,  8,  7,  6,  5, 4, 3, 2, 1, 0,-1,-2,-3
 -9, -8, -7, -6, -5, -4,-3,-2,-1, 0, 1, 2
  8,  7,  6,  5,  4,  3, 2, 1, 0,-1
 -7, -6, -5, -4, -3, -2,-1, 0
  6,  5,  4,  3,  2,  1
 -5, -4, -3, -2
  4,  3

Input: -3,15

Output:
-3,-2,-1, 0, 1, 2, 3, 4,  5, 6,  7,  8,  9, 10, 11, 12, 13,14,15
 2, 1, 0,-1,-2,-3,-4,-5, -6,-7, -8, -9,-10,-11,-12,-13,-14
-1, 0, 1, 2, 3, 4, 5, 6,  7, 8,  9, 10, 11, 12, 13
 0,-1,-2,-3,-4,-5,-6,-7, -8,-9,-10,-11,-12
 1, 2, 3, 4, 5, 6, 7, 8,  9,10, 11
-2,-3,-4,-5,-6,-7,-8,-9,-10
 3, 4, 5, 6, 7, 8, 9
-4,-5,-6,-7,-8
 5, 6, 7
-6

Input: -12,12

Output:
-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6, 7, 8,  9, 10,11,12
 11, 10,  9, 8, 7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7,-8,-9,-10,-11
-10, -9, -8,-7,-6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10
  9,  8,  7, 6, 5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7,-8,-9
 -8, -7, -6,-5,-4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6, 7, 8
  7,  6,  5, 4, 3, 2, 1, 0,-1,-2,-3,-4,-5,-6,-7
 -6, -5, -4,-3,-2,-1, 0, 1, 2, 3, 4, 5, 6
  5,  4,  3, 2, 1, 0,-1,-2,-3,-4,-5
 -4, -3, -2,-1, 0, 1, 2, 3, 4
  3,  2,  1, 0,-1,-2,-3
 -2, -1,  0, 1, 2
  1,  0, -1
  0

1
"नेवर -100-100 के बाहर" कभी-कभी -100 या 100 में भी शामिल नहीं होता है?
जोनाथन एलन

@JonathanAllan मुझे ऐसा लगता है। यह -100 और 100 को छोड़कर समझ में आता है, क्योंकि अगर वे शामिल थे, तो एक 3 जी / 4 वां अंक जोड़ा जाएगा और सब कुछ सिर्फ 2 मूल्यों के लिए बदल दिया जाएगा
श्री एक्सकोडर

सम्बंधित। (एक अन्य चुनौती जहां पैडिंग और ग्रिड को राइट-अलाइन करना मुख्य घटक है।)
मार्टिन एंडर

1
@JonathanAllan मैंने शब्दांकन को थोड़ा बदल दिया है। आप मान सकते हैं कि सबसे छोटा संभव नकारात्मक इनपुट है -99और सबसे बड़ा संभव सकारात्मक इनपुट है 99
केविन क्रूज़सेन 22

1
प्रस्तावित परीक्षण मामला: -3,15। कुछ उत्तर ठीक से काम नहीं करते हैं।
betseg

जवाबों:


7

जेली , 25 24 20 बाइट्स

rµḊṖNµÐĿZbȷG€Ỵ€Zj€”,

यह एक डाइएडिक लिंक है जो पंक्तियों की एक सरणी लौटाता है।

इसे ऑनलाइन आज़माएं!

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

rµḊṖNµÐĿZbȷG€Ỵ€Zj€”,  Dyadic link. Arguments: a, b

r                      Range; yield [a, ..., b].
 µ   µÐĿ               Apply the enclosed chain until the results are no longer
                       unique. Return the array of results.
  Ḋ                      Dequeue; remove the first item.
   Ṗ                     Pop; remove the last item.
    N                    Negate; multiply all remaining integers by -1.
       Z               Zip; transpose rows and columns.
        bȷ             Base 1000; map each n to [n].
          G€           Grid each; in each row, pad all integers to the same length,
                       separating the (singleton) rows by linefeeds.
            Ỵ€         Split each result at linefeeds.
              Z        Zip to restore the original layout.
               j€”,    Join each row, separating by commata.

7

05AB1E , 59 बाइट्स

एक बार फिर मैं उसी बग से बँधा हुआ हूँ, जिसे मैंने महीनों पहले ठीक किया था, लेकिन कभी धक्का नहीं दिया ...
गोल्फिंग अभी भी संभव है।

Ÿ[Ðg1‹#ˆ¦(¨]\\¯vy€g}})J.Bvyð0:S})øvyZs\})U¯vyvyXNèyg-ú}',ý,

इसे ऑनलाइन आज़माएं!


मैं इस के साथ बहुत करीब हो गया: ŸÐ',ý,gÍ;µ¦¨(D',ý,¼यह स्वरूपण चश्मा फिट नहीं है, देखें कि क्या आप इसे बेहतर कर सकते हैं?)
16

1
@ ओएक्सएक्स: हाँ फॉर्मेटिंग निश्चित रूप से कठिन हिस्सा है। कुछ ऐसा Ÿ[Ðg1‹#',ý,¦(¨होगा जो पर्याप्त होगा अन्यथा :)
एमिग्ना

1
-3,15 जैसे इनपुट के लिए ठीक से काम नहीं करता है।
betseg

@ लेटसेग: रिगट तुम हो। पुराने संस्करण पर वापस लौटा।
एमिगा

7

जावा 8, 483 480 486 67 467 बाइट्स

(a,b)->{int f=0,l=b-a+3,z[][]=new int[l][l],y[]=new int[l],i,j,k=0;for(;b-a>=0;k++,a++,b--,f^=1)for(j=0,i=a;i<=b;i++)z[k][j++]=f<1?i:-i;String r="",s;for(i=0;i<l;y[i++]=k)for(j=0,k=1;j<l;k=f>k?f:k)f=(r+z[j++][i]).length();for(i=0;i<l;i++){k=z[i][0];if(i>0&&k==z[i][1]&k==z[i-1][2])break;for(j=0;j<l;){k=z[i][j];s="";for(f=(s+k).length();f++<y[j];s+=" ");f=z[i][++j];if(k==f){r+=(i>0&&z[i-1][1]==z[i][1]?s+0:"")+"\n";j=l;}else r+=s+k+(f==z[i][j+1]?"":",");}}return r;}

बाइट्स बग फिक्स की वजह से उठाया ..

ठीक है, मैंने जितना सोचा था (जावा में है ..) की तुलना में यह बहुत अधिक समय (और बाइट्स) लिया । यह निश्चित रूप से, कुछ और golfed जा सकती है, शायद एक पूरी तरह से अलग दृष्टिकोण का उपयोग कर के बजाय एक NxN ग्रिड सरणी बनाने को भरने के लिए और उसके बाद शून्य (का परीक्षण मामले के लिए एक कष्टप्रद बढ़त मामले के साथ 'को निकाल देते हैं' द्वारा -1,1, साथ ही के रूप में-12,12 ) ।

इसे ऑनलाइन आज़माएं।

स्पष्टीकरण:

(a,b)->{        // Method with two integer parameters and String return-type
  int f=0,      //  Flag-integer, starting at 0
      l=b-a+3,  //  Size of the NxN matrix,
                //  plus two additional zeros (so we won't go OutOfBounds)
      z[][]=new int[l][l],
                //  Integer-matrix (default filled with zeros)
      y[] = new int[l],
                //  Temp integer-array to store the largest length per column
      i,j,k=0;  //  Index-integers
  for(;b-a>=0   //  Loop as long as `b-a` is not negative yet
      ;         //    After every iteration:
       k++,     //     Increase `k` by 1
       a++,     //     Increase `a` by 1
       b--,     //     Decrease `b` by 1
       f^=1)    //     Toggle the flag-integer `f` (0→1 or 1→0)
    for(j=0,i=a;i<=b;i++)
                //   Inner loop `i` in the range [`a`, `b`]
      z[k][j++]=//    Set all the values in the matrix to:
        f<1?    //     If the flag is 0:
         i      //      Simply use `i`
        :       //     Else (flag is 1):
         -i;    //      Use the negative form of `i` instead
  String r="",  //  The return-String
         s;     //  Temp-String used for the spaces
  for(i=0;i<l;  //  Loop `i` over the rows of the matrix
      ;y[i++]=k)//    After every iteration: Set the max column-width
    for(j=0,k=1;j<l;
                //   Inner loop `j` over the cells of each row
        k=f>k?f:k)
                //     After every iteration: Set `k` to the highest of `k` and `f`
      f=(r+z[j++][i]).length();
                //    Determine current number's width
                //    (NOTE: `f` is no longer the flag, so we re-use it as temp value)
  for(i=0;i<l;i++){
                //  Loop `i` over the rows of the matrix again
    k=z[i][0];  //   Set `k` to the first number of this row
    if(i>0      //   If this isn't the first row
       &&k==z[i][1]&k==z[i-1][2])
                //   and the first number of this row, second number of this row,
                //   AND third number of the previous row all equal (all three are 0)
      break;    //    Stop loop `i`
    for(j=0;j<l;){
                //   Inner loop `j` over the cells of each row
      k=z[i][j];//    Set `k` to the number of the current cell
      s="";     //    Make String `s` empty again
      for(f=(s+k).length();f++<y[j];s+=" ");
                //    Append the correct amount of spaces to `s`,
                //    based on the maximum width of this column, and the current number
      f=z[i][++j];
                //    Go to the next cell, and set `f` to it's value
      if(k==f){ //    If the current number `k` equals the next number `f` (both are 0)
        r+=     //     Append result-String `r` with:
          (i>0  //      If this isn't the first row
           &&z[i-1][1]==z[i][1]?
                //      and the second number of this and the previous rows 
                //      are the same (both are 0):
            s+0 //       Append the appropriate amount of spaces and a '0'
           :    //      Else:
            "") //       Leave `r` the same
          +"\n";//     And append a new-line
         j=l;}  //     And then stop the inner loop `j`
      else      //    Else:
       r+=s     //     Append result-String `r` with the appropriate amount of spaces
          +k    //     and the number 
          +(f==z[i][j+1]?"":",");}}
                //     and a comma if it's not the last number of the row
  return r;}    //  Return the result `r`

6

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

(a,b,d=~a+b+2,o=Array(~~(d/2)+1).fill([...Array(d)].map(_=>a++)).map((e,i)=>e.slice(i,-i||a.a)).map((e,i)=>i%2==0?e:e.map(e=>e*-1)))=>o.map(e=>e.map((e,i)=>' '.repeat(Math.max(...[...o.map(e=>e[i]).filter(e=>e!=a.a)].map(e=>[...e+''].length))-`${e}`.length)+e)).join`
`

व्याख्या की:

(                                     // begin arrow function

  a,b,                                // input

  d=~a+b+2,                           // distance from a to b

  o=Array(~~(d/2)+1)                  // create an outer array of
                                      // (distance divided by 2 
                                      // floored + 1) length

    .fill(                            // fill each outer element
                                      // with the following:

      [...Array(d)]                   // create inner array of the 
                                      // distance length and 
                                      // fill with undefined

        .map(_=>a++)                  // map each inner element 
                                      // iterating from a to b
    ) 
    .map(                             // map outer array

      (e,i)=>e.slice(i,-i||a.a)       // remove n elements from each end 
                                      // of the inner array corresponding 
                                      // to the outer index with a special 
                                      // case of changing 0 to undefined
    )
    .map(                             // map outer array

      (e,i)=>i%2==0?e:e.map(e=>e*-1)  // sign change the inner elements
                                      // in every other outer element
    )
)=>                                   // arrow function return

  o                                   // outer array

    .map(                             // map outer array

      e=>e.map(                       // map each inner array

        (e,i)=>' '.repeat(            // repeat space character the
                                      // following amount:

          Math.max(...                // spread the following array to
                                      // max arguments:

            [...                      // spread the following to an
                                      // array:

              o                       // outer array

                .map(e=>e[i])         // map returning each element of
                                      // the same inner index from the
                                      // outer array

                .filter(e=>e!=a.a)    // remove undefined elements
            ]
            .map(e=>[...e+''].length) // map each element to the  
                                      // length of the string

          )                           // returns the max string 
                                      // length of each column

          -`${e}`.length              // subtract the current 
                                      // element's string length 
                                      // from the max string length

      )                               // returns the appropriate amount
                                      // of padding

      +e                              // add the element to the padding
    )
  ).join`
`                                     // join each element of outer
                                      // array as string with newline

const f = (a,b,d=~a+b+2,o=Array(~~(d/2)+1).fill([...Array(d)].map(_=>a++)).map((e,i)=>e.slice(i,-i||a.a)).map((e,i)=>i%2==0?e:e.map(e=>e*-1)))=>o.map(e=>e.map((e,i)=>' '.repeat(Math.max(...[...o.map(e=>e[i]).filter(e=>e!=a.a)].map(e=>[...e+''].length))-`${e}`.length)+e)).join`
`
console.log('Test Case: -1,1')
console.log(f(-1,1))
console.log('Test Case: -3,6')
console.log(f(-3,6))
console.log('Test Case: -2,8')
console.log(f(-2,8))
console.log('Test Case: -15,8')
console.log(f(-15,8))
console.log('Test Case: -3,15')
console.log(f(-3,15))
console.log('Test Case: -12,12')
console.log(f(-12,12))


क्या आप नए परीक्षण मामलों को जोड़ सकते हैं?
betseg

4

QBIC , 46 बाइट्स

::[0,-1*a+b,2|[a,b|?d*q';`]q=q*-1┘a=a+1┘b=b-1?

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

::           Read the negative and positive ints as a and b
[0,-1*a+b,2| FOR(c = 0; c < range(a, b); c+=2) {} This creates the proper amount of lines.
  [a,b|      For each line, loop from lower to upper
    ?d*q     Print the current point in the range, accounting for the sign-switch
     ';`     And suppress newlines. The ' and ` stops interpreting special QBIC commands.
  ]          NEXT line
  q=q*-1┘    Between the lines, flip the sign-flipper
  a=a+1┘     Increase the lower bound
  b=b-1?     Decrease the upper bound, print a newline
             The outermost FOR loop is auto-closed at EOF.

सौभाग्य से, एक संख्या को प्रिंट करते समय, QBasic ऑटो आवश्यक पैडिंग जोड़ता है।


नौकरी करने के लिए सही भाषा ढूंढने का एक और मामला :)
११-११-

+1 क्या QBIC के लिए ऑनलाइन कंपाइलर उपलब्ध है? मैं इसे सभी परीक्षण मामलों के लिए कार्रवाई में देखना चाहता हूं (हालांकि मैं आपका शब्द यह सब कुछ ऑटो-संरेखित करता हूं)। पहली बार जब मैं QBIC देख रहा हूं, तो आपके स्पष्टीकरण को पढ़ते समय दो प्रश्न: यदि मैंने इसे सही ढंग से पढ़ा है तो qडिफ़ॉल्ट मान 1 से शुरू होता है? क्या QBIC में सभी मूल्य 1 से शुरू होते हैं, या कुछ ऐसा है जो मैं यहाँ याद कर रहा हूँ? और d/ के लिए dस्टैंड कहां है ? या dलूप में वर्तमान संख्या और ?फ़ोर-लूप कोड में बस एक आवश्यक सीमांकित है ( ?वर्तमान संख्या होने के बजाय , जो मैं शुरू में इसे कैसे पढ़ा था)?
केविन क्रूज़सेन

1
@KevinCruijssen अभी तक कोई ऑनलाइन दुभाषिया नहीं है, क्षमा करें। मैं एक पर काम कर रहा हूं, लेकिन आपके ब्राउज़र में चल रहे QBasic 4.5 को पाने के लिए जितना आपको लगता है उससे कहीं अधिक कठिन है :-)। q1 से शुरू होता है। सभी लोअरकेस अक्षर नंबर वेरिएंट होते हैं और अक्षरों q-zको आरंभिक किया जाता है 1-10। और कई आदेशों में ऑटो-असाइन किए गए नंबर को कोड में पाए जाते हैं। dवास्तव में भीतर के पाश पर चलने वाला है। अधिक जानकारी के लिए, शोकेस - या यह
steenbergh

3

पर्ल 6 , 146 बाइट्स

{$_:=(($^a..$^b).List,{-«.[1..*-2]}...3>*).List;$/:=[map {"%{.max}s"},roundrobin($_)».chars];map {join ',',map {$^a.fmt: $^b},flat($_ Z $/)},$_}

कोशिश करो

तार का एक क्रम पैदा करता है

विस्तारित:

{  # bare block lambda with placeholder parameters 「$a」 and 「$b」

  # generate the data
  $_ := (                 # bind to $_ so it isn't itemized

                          # produce a sequence
    ( $^a .. $^b ).List,  # seed the sequence, and declare parameters
    { \ .[ 1 .. *-2 ] } # get all the values except the ends and negate
    ...                   # keep producing until
    3 > *                 # the length of the produced list is less than 3

  ).List;                 # turn the Seq into a List


  # generate the fmt arguments
  $/ := [                 # bind an array to 「$/」 so it isn't a Seq
    map
      { "%{ .max }s" },   # turn into a 「.fmt」 argument ("%2s")

      roundrobin($_)\     # turn the "matrix" 90 degrees
      ».chars             # get the string length of each number
  ];


  # combine them together
  map
    {
      join ',',
        map
          { $^a.fmt: $^b }, # pad each value out
          flat(
            $_ Z $/         # zip the individual number and it's associated fmt
          )
    },
    $_                      # map over the data generated earlier
}

3

PHP 7.1, 277 बाइट्स

for([,$a,$b]=$argv,$c=count($r=range($a,$b))/2;$c-->0;$r=range(-$r[1],-$r[count($r)-2]))$y[]=array_map(strlen,$x[]=$r);for($i=0;$i<count($y[0]);$i++)$z[$i]=max(array_column($y,$i));foreach($x as $g){$o=[];foreach($g as$k=>$v)$o[]=sprintf("%$z[$k]d",$v);echo join(",",$o)."\n";}

ऑनलाइन दुभाषिया


2
आप एक ऑनलाइन दुभाषिया लिंक कर सकते हैं?
betseg

@betseg किया और महसूस किया कि मेरे संस्करण ने सही तरीके से काम नहीं किया है
जोर्ग ह्यूल्सरमैन

ओह gawd बस codegolf.se पर php का उपयोग कर। सभी का उपयोग करें।
इवान कैरोल

3

C # कंसोल एप्लिकेशन 196 बाइट्स

static void p(int a,int b){string S="",d ="";int c=-1;for(int i=b;i >=a;i--){c=c==1?c=-1:c=1;for(int j = a;j<=i;j++){S=j!=a?",":S="";d=d+S+(j*c);}d+= "\r\n";a++;}Console.Write(d);Console.Read();}

PPCG में आपका स्वागत है! आप 4 स्थानों (मेरा संपादन देखें) का उपयोग करके अपने कोड को इंडेंट कर सकते हैं। कोड गोल्फ में, आपको सबसे कम बाइट-काउंट (आपके कोड में बाइट्स की मात्रा) संभव है - जिसका अर्थ है छोटे चर नाम, और रिक्त स्थान हटाना। इसके अलावा, आप अपने बाइट-काउंट को एक बार समाप्त होने के बाद अपने हेडर में रखें।
विदूषक

2

जावास्क्रिप्ट - 196 185 176 बाइट्स

function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}l.shift();l.pop()}return h}

मैं वास्तव में नई जेएस तकनीकों में से कुछ के साथ गति करने के लिए नहीं हूं, इसलिए यह संभवतः बहुत अधिक गोल्फ हो सकता है।

बस कोशिकाओं के लिए परिभाषित कोई चौड़ाई के साथ एक अच्छा पुराने जमाने की HTML तालिका बनाता है ताकि प्रत्येक प्रविष्टि हेंस इष्टतम रिक्ति की चौड़ाई के लिए पहली पंक्ति चूक हो। यह (एब) HTML के "फीचर" का भी उपयोग करता है, यदि किसी नए ओपनिंग टैग के साथ आने पर उसे टैग बंद करने की आवश्यकता न हो।

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}l.shift();l.pop()}return h}
document.write(f(-1,1))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}l.shift();l.pop()}return h}
document.write(f(-3,6))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-2,8))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-15,8))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-3,15))
</script>

<script>
function f(i,j){l=[];for(x=i;x<j+1;x++)l.push(x);h='<table>';while(l.length>0){h+='<tr>';for(x=0;x<l.length;x++){h+='<td align=right>'+l[x];l[x]*=-1}h+='</tr>';l.shift();l.pop()}return h}
document.write(f(-12,12))
</script>


2

पायथन 2 - 208 बाइट्स

इसे ऑनलाइन आज़माएं

d,u=input()
l=[x for x in range(d,u+1)]
M=map(lambda x:~9<x<21-u-u%2and 2or 3,l)
M[-1]-=1
M[-2]-=1
while len(l)>0:print','.join(map(lambda i:('%'+'%d'%M[i]+'d')%l[i],range(len(l))));l=map(lambda e:-e,l[1:-1])

पैडिंग मानों की सरणी बनाता है और फिर आवश्यक स्वरूपित स्ट्रिंग्स के निर्माण के लिए इसका उपयोग करता है

स्पष्टीकरण:

d,u=input()
# create list of all values
l=[x for x in range(d,u+1)]
# create array of padding values
# by default, padding 2 used for numbers in [-9;9] and 3 for all other (limited with -99 and 99)
# but contracting list moves numbers larger that 9 under ones, that are <=9
# so upper limit of padding 2 is limited with 21-u-u%2
# (~9 == -10)
M=map(lambda x:~9<x<21-u-u%2and 2or 3,l)
# last two elements should have lower padding as there won't be any other numbers it their columns
M[-1]-=1
M[-2]-=1
while len(l)>0:
    # create formatted string for every element in l
    # join all strings with comma
    print','.join(map(lambda i:('%'+'%d'%M[i]+'d')%l[i],range(len(l))))
    # get slice without first and last element and change sigh
    l=map(lambda e:-e,l[1:-1])

नमस्ते, PPCG में आपका स्वागत है! दुर्भाग्य से, यह वर्तमान में सही नहीं है। आपने सभी नंबरों में समान मार्जिन जोड़ा है, साथ ही सीमांकक के रूप में रिक्त स्थान जोड़ें। चुनौती आपके चयन (व्हॉट्सएप को छोड़कर) के एक सीमांकक का उपयोग करना था, लेकिन अधिक महत्वपूर्ण बात: उस विशिष्ट कॉलम में सबसे बड़ी चौड़ाई के साथ संख्या के आधार पर संरेखण है। कृपया चुनौती के महत्वपूर्ण खंड, साथ ही उदाहरण के रूप में परीक्षण के मामलों को देखें। आप इसे गलत करने वाले पहले व्यक्ति नहीं हैं, लेकिन वर्तमान में यह निर्दिष्ट चुनौती के साथ मान्य नहीं है। हटाने के लिए स्वतंत्र महसूस करें, नियमों का पालन करने के लिए संशोधित करें, और अपने उत्तर को रद्द करें
केविन क्रूज़सेन

2
@KevinCruijssen यह इंगित करने के लिए धन्यवाद! मैंने अपना जवाब अपडेट किया है
डेड पॉसम

1
यह वास्तव में बहुत अच्छा लग रहा है! केवल एक छोटा सा नियम आप भूल गए: " उत्पादन भी अपनी खुद की पसंद का एक सीमांकक हो सकती है (व्हाइटस्पेस और नई लाइनों को छोड़ कर) : IE ,और ;और |सभी स्वीकार्य परिसीमक हैं। " वर्तमान में आप परिसीमक के रूप में एक अंतरिक्ष का उपयोग करें। लेकिन चौड़ाई की मुख्य कठिनाई वास्तव में निपट गई है, इसलिए आप अभी तक बहुत अच्छा कर रहे हैं! केवल यह छोटा सा परिवर्तन, और फिर इसे किया जाना चाहिए। :)
केविन क्रूज़सेन

1
उत्तम! +1 अच्छा काम सब कुछ ठीक कर रहा है। और एक बार फिर पीपीसीजी में आपका स्वागत है। (Btw, यहाँ जगह है: %l[i], rangeआवश्यक?)
केविन क्रूज़सेन

2
@KevinCruijssen मुझे उम्मीद है कि थोड़ी देर के लिए पीपीसीजी के आसपास रहना होगा, यह बहुत दिलचस्प लगता है (नहीं, एक और बाइट बचाया)
डेड पोसुम
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.