Números alternos

12

Considere la matriz de enteros positivos:

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

Luego, concatenelos:

1234567891011121314151617181920212223242526...

Y luego se dividen en trozos de longitud variable, cada longitud es igual al N º entero positivo:

[1][23][456][7891][01112][131415][1617181][92021222][324252627][2829303132] ...
---------------------------------------------------------------------------
 1  2    3     4     5       6       7        8          9          10      ...

Tarea

Dado un entero N (positivo para la indexación 1 o no negativo para la indexación 0), su tarea es generar la suma de los deltas de los dígitos en el enésimo trozo N (las diferencias entre dígitos consecutivos).

Ejemplos y casos de prueba

Casos de prueba indexados 1. Si desea índices 0, simplemente disminuya N.

N, Chunk, Deltas, Sum

1  -> 1          -> []                               -> 0
2  -> 23         -> [1]                              -> 1
3  -> 456        -> [1, 1]                           -> 2
4  -> 7891       -> [1, 1, -8]                       -> -6
5  -> 01112      -> [1, 0, 0,1]                      -> 2
6  -> 131415     -> [2, -2, 3, -3, 4]                -> 4
7  -> 1617181    -> [5, -5, 6, -6, 7, -7]            -> 0
8  -> 92021222   -> [-7, -2, 2, -1, 1, 0, 0]         -> -7
9  -> 324252627  -> [-1, 2, -2, 3, -3, 4, -4, 5]     -> 4
10 -> 2829303132 -> [6, -6, 7, -6, -3, 3, -2, 2, -1] -> 0

Puzzle 2 en CodeGolf-Hackathon (Yo también soy el autor original, así que puedo volver a publicar). Relacionado, Inspiración . Relacionados .

Sr. Xcoder
fuente
1
La suma de todas las diferencias entre dígitos consecutivos es solo la diferencia entre el último y el primero.
KSmarts

Respuestas:

5

JavaScript (ES6), 54 53 51 50 bytes

Guardado 1 byte gracias a @tsh

0 indexado.

k=>-(n=1,g=s=>s[x=k*-~k/2]-s[x+k]-n||g(s+n++))``-n

Casos de prueba

Arnauld
fuente
Indexado a cero:k=>-(n=1,g=s=>s[x=k*-~k/2]-s[x+k]-n||g(s+n++))""-n
tsh
4

APL (Dyalog) , 32 bytes

{+/2-⍨/⍎¨⍵↑(+/⍳⍵-1)↓' '~⍨⍕⍳+/⍳⍵}

Pruébalo en línea!

¿Cómo?

+/⍳⍵- suma de 1an

- hacer rango de eso

' '~⍨⍕ - en cuerda, sin espacios

(+/⍳⍵-1)↓- soltar los primeros caracteres (suma de 1a n-1)

⍵↑- mantener los siguientes ncaracteres

⍎¨ - convierte cada carácter en entero

2-⍨/ - lista de diferencias (resta hacia atrás por cada 2 artículos)

+/ - Añádelo.

Uriel
fuente
4

Casco , 9 bytes

ΣẊ-!SCṁdN

Pruébalo en línea!

Mi solución al Hackathon.

Explicación:

ΣẊ-!SCṁdN⁰
    S      (x -> y -> z):f -> (x -> y):g -> x:x :: return f(x, g(x))
     C      f= [num]:x -> [x]:y -> [x] :: cut y in pieces where each piece has its respective length in x
      ṁ     g= (x -> [y]):f -> ([x]:x -> [y]) :: maps f over x then concatenate
       d     f= num:x -> [num] :: return decimal digits of x
        N   x= sequence of natural numbers [1..]
   !     ⁰ [x]:x -> num:y -> x :: get yth (impl. input) element of x (above result)
 Ẋ         (x -> x -> y):f -> [x]:x -> [y] :: map f over overlapping pairs of x (above result)
  -         f= num:x -> num:y -> num :: return y - x
Σ          [num]:x -> num :: return sum of x (above result)
Erik el Outgolfer
fuente
4

Haskell , 61 60 bytes

l=fromEnum<$>(show=<<[1..])
f n|t<-sum[2..n]=l!!t-l!!(t-n+1)

Pruébalo en línea!

Explicación:

La suma de los deltas de una lista es la misma que la diferencia entre el último y el primer elemento.

El último elemento (cero-indexada) es t, triangle(n)-1 = sum[2..n]. El primer elemento, entonces, es t-n+1que la lista tiene nelementos.

H.PWiz
fuente
4

Python 2 , 80 bytes

n=input()
s=map(int,''.join(map(str,range(2**n))))
print s[n*-~n/2]-s[~-n*n/2+1]

Pruébalo en línea!

2**nes una exageración, por supuesto, pero es un byte más corto que algo así n*n+1.

Lynn
fuente
3

Mathematica, 71 bytes

Tr@Differences[TakeList[Join@@IntegerDigits[Range[#^2]],Range@#][[#]]]&

Pruébalo en línea!

J42161217
fuente
3

JavaScript (ES6), 60 57 53 bytes

f=(n,s=i='',m=n*-~n/2)=>s[m]?s[m]-s[m-n+1]:f(n,s+i++)
<input type=number min=1 oninput=o.textContent=f(this.value)><pre id=o>

1 indexado. Versión anterior no recursiva de 60 bytes:

f=
(n,s=[...Array(n*n+1).keys()].join``)=>s[m=n*-~n/2]-s[m-n+1]
<input type=number min=1 oninput=o.textContent=f(this.value)><pre id=o>

Neil
fuente
1

Python 2 , 104 bytes

def f(N):A=map(int,"".join(map(str,range(1,N*N)))[~-N*N/2:][:N]);return sum(a-b for a,b in zip(A[1:],A))

Pruébalo en línea!

Jonathan Frech
fuente
1

Perl 6 ,  58  55 bytes

{[+] ($_=(1..*).map(|*.comb).rotor(1..*)[$^a])[1..*]Z-@$_}

Pruébalo

{[+] ($_=(1..*).map(|*.comb)[^$^a+[+] ^$a])[1..*]Z-@$_}

Pruébalo

Expandido:

{ # bare block lambda with placeholder parameter 「$a」
  [+]  # reduce using &infix:«+» the following


    (
      $_ =                # store into 「$_」 for later use

        ( 1 .. * )        # Range of all positive integers
        .map( | *.comb )\ # split into digits and flatten into single list

        [                 # index into the sequence (1 based)

          ^$^a            # Range up to (and excluding) the input
                          # 「0 ..^ $a」 or 「0 .. $a-1」

          +               # shift it up by
          [+] ^$a         # the sum of the values up to (and excluding) the input

        ]

    )[ 1 .. *]            # skip the first value

    Z-                    # zip using &infix:«-»

    @$_                   # 「$_」 used as a List
}
Brad Gilbert b2gills
fuente
1

PHP , 163 147 bytes

$v=$argv[1];for($i=1;$i<=$v*$v;$i++){$s.=$i;$j+=$i<$v?$i:0;}$s=array_slice(str_split($s),$j,$v);for($i=0;$i<$v-1;$i++){$k+=$s[$i+1]-$s[$i];}echo$k;

Pruébalo en línea!

Mi primer intento de golf de código ... tengo la sensación de que esto puede ser más corto

Editar: guardado 16 bytes al eliminar varias instancias

SmartCoder
fuente
Bienvenido al sitio! Es posible que desee consultar estos consejos para jugar al golf en PHP
caird coinheringaahing
0

Pyth , 29 27 bytes

Guardado 2 bytes gracias a @ Mr.Xcoder.

s.+msdc:sm+hd""U*QQKsUQ+QK1

Pruébalo en línea!

Ian H.
fuente
1
27 bytes bastante seguro de que se puede jugar más golf ...
Sr. Xcoder
0

Jalea , 14 bytes

²RDFṫ³ḶS‘¤ðḣIS

Pruébalo en línea!

Explicación

²RDFṫ³ḶS‘¤ðḣIS    Main Link
²                  Square input
 R                 Range: [1,2,3,..,n^2]
  D                Digits: [1,2,...,[1,0],[1,1],...]
   F               Flatten list
     ³ḶS‘¤         n(n-1)/2+1
    ṫ              Remove the first n(n-1)/2+1 elements from the list of digits
          ðḣ       Take the first n digits of the list. ð is needed to prevent I from acting on n.
            I      Increment. Take the diferences
             S     Sum

Originalmente comencé tomando el rango (n (n + 1) / 2) pero como puede tener dígitos adicionales al final de la lista antes de dividirlo, lo cambié a rango (n ^ 2). Tienes dígitos adicionales después de 1-9 de todos modos.

dylnan
fuente
+²HRDFṫЀ³ḶḣЀRS€‘¤ṪðḣISintento original (exitoso pero largo)
dylnan