増分範囲!


14

あなたの仕事は、2つの正の整数と与えられると、増分範囲シーケンスの最初の数を返すことです。xnx

増分範囲シーケンスは、最初に範囲を生成します。たとえば、が場合、リストが生成されます。次に、ずつ増加した最後の値を既存のリストに繰り返し追加し、続行します。nn3[1,2,3]n1

たとえば、の入力:n=3

n=3
1. Get range 1 to n. List: [1,2,3]
2. Get the last n values of the list. List: [1,2,3]. Last n=3 values: [1,2,3].
3. Increment the last n values by 1. List: [1,2,3]. Last n values: [2,3,4].
4. Append the last n values incremented to the list. List: [1,2,3,2,3,4]
5. Repeat steps 2-5. 2nd time repeat shown below.

2nd repeat:
2. Get the last n values of the list. List: [1,2,3,2,3,4]. Last n=3 values: [2,3,4]
3. Increment the last n values by 1. List: [1,2,3,2,3,4]. Last n values: [3,4,5].
4. Append the last n values incremented to the list. List: [1,2,3,2,3,4,3,4,5]

テストケース:

n,   x,   Output
1,  49,   [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49]
2, 100,   [1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,30,30,31,31,32,32,33,33,34,34,35,35,36,36,37,37,38,38,39,39,40,40,41,41,42,42,43,43,44,44,45,45,46,46,47,47,48,48,49,49,50,50,51]
3,  13,   [1,2,3,2,3,4,3,4,5,4,5,6,5]

回答:



7

ゼリー、4 バイト

Ḷd§‘

x左右に2つの正の整数を受け入れるダイアディックリンクn。正の整数のリストを生成します。

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

どうやって?

Ḷd§‘ - Link: x, n              e.g   13, 3
Ḷ    - lowered range (x)             [0,1,2,3,4,5,6,7,8,9,10,11,12]
 d   - divmod (n)                    [[0,0],[0,1],[0,2],[1,0],[1,1],[1,2],[2,0],[2,1],[2,2],[3,0],[3,1],[3,2],[4,0]]
  §  - sums                          [0,1,2,1,2,3,2,3,4,3,4,5,4]
   ‘ - increment (vectorises)        [1,2,3,2,3,4,3,4,5,4,5,6,5]

3
待って...あのdivmodは?賢い!そして、私は苦労していましたp...
エリック・ザ・アウトゴルファー

6

R、33バイト

function(n,x,z=1:x-1)z%%n+z%/%n+1

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

Ports Jonathan AllanのPythonソリューション

R、36バイト

function(n,x)outer(1:n,0:x,"+")[1:x]

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

私の元のソリューション。各列を増分、つまり1 n 2 n + 1 …のn×x行列を生成し、最初のxエントリを取得します(列を下に移動します)。1n,2n+1,x


6

05AB1E、6 バイト

L<s‰O>

@JonathanAllanのJelly answerのポートなので、必ず彼に賛成してください!

最初の入力はx、2番目の入力はnです。

オンラインそれを試してみたり、すべてのテストケースを確認してください

説明:

L       # Push a list in the range [1, (implicit) input]
        #  i.e. 13 → [1,2,3,4,5,6,7,8,9,10,11,12,13]
 <      # Decrease each by 1 to the range [0, input)
        #  → [0,1,2,3,4,5,6,7,8,9,10,11,12]
  s    # Divmod each by the second input
        #  i.e. 3 → [[0,0],[0,1],[0,2],[1,0],[1,1],[1,2],[2,0],[2,1],[2,2],[3,0],[3,1],[3,2],[4,0]]
    O   # Sum each pair
        #  → [0,1,2,1,2,3,2,3,4,3,4,5,4]
     >  # And increase each by 1
        #  → [1,2,3,2,3,4,3,4,5,4,5,6,5]
        # (after which the result is output implicitly)

私自身の最初のアプローチは8 バイトでした:

LI∍εN¹÷+

nx

オンラインそれを試してみたり、すべてのテストケースを確認してください

説明:

L         # Push a list in the range [1, (implicit) input]
          #  i.e. 3 → [1,2,3]
 I       # Extend it to the size of the second input
          #  i.e. 13 → [1,2,3,1,2,3,1,2,3,1,2,3,1]
   ε      # Map each value to:
    N¹÷   #  The 0-based index integer-divided by the first input
          #   → [0,0,0,1,1,1,2,2,2,3,3,3,4]
       +  #  Add that to the value
          #   → [1,2,3,2,3,4,3,4,5,4,5,6,5]
          # (after which the result is output implicitly)


4

Brain-Flak、100バイト

(<>)<>{({}[()]<(({}))((){[()](<{}>)}{}){{}{}<>(({})<>)(<>)(<>)}{}({}[()]<(<>[]({}())[()]<>)>)>)}{}{}

コメントとフォーマット:

# Push a zero under the other stack
(<>)<>

# x times
{
    # x - 1
    ({}[()]<

        # Let 'a' be a counter that starts at n
        # Duplicate a and NOT
        (({}))((){[()](<{}>)}{})

        # if a == 0
        {
            # Pop truthy
            {}
            <>

            # Reset n to a
            (({})<>)

            # Push 0 to each
            (<>)(<>)
        }

        # Pop falsy
        {}

        # Decrement A, add one to the other stack, and duplicate that number under this stack
        ({}[()]<
            (<>[]({}())<>)
        >)
    >)
}

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


4

J13 12バイト

[$[:,1++/&i.

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

どうやって

x左側の引数、n右側の引数として取ります。レッツ・テイクx = 8n = 3、この例を示します。

  • +/&i.:整数の範囲を作成して両方の引数を変換しますi.。つまり、左の引数がに0 1 2 3 4 5 6 7なり、右の引数がになり0 1 2ます。次に+/、これら2つから「追加テーブル」を作成します。

     0 1 2
     1 2 3
     2 3 4
     3 4 5
     4 5 6
     5 6 7
     6 7 8
     7 8 9
    
  • 1 +:このテーブルのすべての要素に1を追加します。

     1 2  3
     2 3  4
     3 4  5
     4 5  6
     5 6  7
     6 7  8
     7 8  9
     8 9 10
    
  • [: ,:フラット化,

     1 2 3 2 3 4 3 4 5 4 5 6 5 6 7 6 7 8 7 8 9 8 9 10
    
  • [ $$元の変換されていない左引数と同じ数の要素を持つように整形します[。つまり、x

     1 2 3 2 3 4 3 4 
    


4

オクターブ、25バイト

@(n,x)((1:n)'+(0:x))(1:x)

数値nとを入力しx、行ベクトルを出力する無名関数。

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

使い方

考えてみましょうn=3x=13

コード(1:n)'は列ベクトルを与えます

1
2
3

次に(0:x)、行ベクトルを与えます

0  1  2  3  4  5  6  7  8  9 10 11 12 13

加算(1:n)'+(0:x)はブロードキャストでは要素ごとに行われるため、合計のすべてのペアを含む行列が得られます。

1  2  3  4  5  6  7  8  9 10 11 12 13 14
2  3  4  5  6  7  8  9 10 11 12 13 14 15
3  4  5  6  7  8  9 10 11 12 13 14 15 16

(1:x)使用したインデックス付けでは、xこの行列の最初の要素が列優先の順番で(下に、次に横に)行ベクトルとして取得されます。

1 2 3 2 3 4 3 4 5 4 5 6 5


2

Forth(gforth)、34バイト

: f 0 do i over /mod + 1+ . loop ;

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

コードの説明

: f            \ start a new word definition
  0 do         \ start a loop from 0 to x-1
    i          \ put the current loop index on the stack
    over       \ copy n to the top of the stack
    /mod       \ get the quotient and remainder of dividing i by n
    + 1+       \ add them together and add 1
    .          \ output result
  loop         \ end the counted loop
;              \ end the word definition

2

MATL16、10のバイト

:!i:q+2G:)

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

GuiseppeとLuis Mendoのおかげで-6バイト節約!

説明:

:!          % Push the array [1; 2; ... n;]
  i:q       % Push the array [0 1 2 ... x - 1]
     +      % Add these two arrays with broadcasting
      2G    % Push x again
        :)  % Take the first x elements

@LuisMendoありがとう!明らかに、私はMATLにかなりさびています:)
DJMcMayhem










0

、18バイト

NθFN⊞υ⊕⎇‹ιθι§υ±θIυ

オンラインでお試しください!リンクは、コードの詳細バージョンです。インデックスがゼロの範囲でリストをシードし、再びスライスすることを夢見ていましたが、実際には2バイト長くなりました。説明:

Nθ                  Input `n` into variable
   N                Input `x`
  F                 Loop over implicit range
         ι          Current index
        ‹           Less than
          θ         Variable `n`
       ⎇   ι        Then current index else
               θ    Variable `n`
              ±     Negated
            §υ      Cyclically indexed into list
      ⊕             Incremented
    ⊞υ              Pushed to list
                Iυ  Cast list to string for implicit output

0

JS、54バイト

f=(n,x)=>Array.from(Array(x),(_,i)=>i+1-(i/n|0)*(n-1))

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


PPCGへようこそ:)これは再帰的な関数ではないため、を数える必要はありませんf=。パラメーター(n=>x=>)をカリー化することで1バイトを節約し、配列([...Array(x)].map())を広げてマッピングすることで別のバイトを節約できます。
シャギー





0

C(clang)、843バイト

#include <stdlib.h>
main(int argc, char* argv[]){
        int x,n;
        if (argc == 3 && (n = atoi(argv[1])) > 0 && (x = atoi(argv[2])) > 0){ 
                int* ranges = calloc(x, sizeof *ranges);
                for (int i = 0; i < x; i++){
                        if (i < n){ 
                                ranges[i] = i+1;
                        }   
                        else {
                                ranges[i] = ranges[i-n] + 1;
                        }   
                }   
        printf("[");
        for (int j = 0; j < x - 1; j++){
                printf("%d",ranges[j]);
                printf(",");
        }   
        printf("%d",ranges[x - 1]);
        printf("]\n");
        free(ranges);
        }   
        else {
                printf("enter a number greater than 0 for n and x\n");
        }   
}

2
こんにちは、PPCGへようこそ!このチャレンジには[code-golf]というタグが付けられています。つまり、できるだけ少ないバイト/文字でチャレンジを完了する必要があります。大量の空白を削除し、コード内の変数名を単一の文字(argcargvおよびranges)に変更できます。また、警告メッセージを追加する必要もありません。チャレンジで特に指定されていない限り、入力が有効であると想定できます。
ケビンクルーッセン



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