타임 라인 그리기


23

날짜를 나타내는 정수 목록을 입력하면 다음과 같이 ASCII 아트 타임 라인을 출력합니다.

<----------------------------->
  A     B  C           D    E

위의 타임 라인은 입력 출력입니다 [1990, 1996, 1999, 2011, 2016]. 타임 라인에 대한 몇 가지 사항에 유의하십시오.

  • 출력의 첫 번째 줄은보다 작은 부호 ( <), 동일한 dateOfLastEvent - dateOfFirstEvent + 3마지막 대시 를 포함하기 위해 하나를 추가해야하고, 패딩을 위해 두 개를 더 추가해야하기 때문에 대시 수가 같습니다 >.

  • 두 번째 출력 행에서 각 이벤트는 위치에 배치됩니다 dateOfEvent - dateOfFirstEvent + 2(인덱싱 0으로 가정). 따라서 첫 번째 이벤트는 2의 오른쪽에 두 문자 인 위치에 배치되고 <마지막 이벤트는의 왼쪽에 비슷한 두 문자 >입니다.

  • 각 이벤트는 문자로 표시됩니다. 이벤트 1은 A, 이벤트 2는 B등입니다. 26 개를 초과하는 이벤트는 없습니다. 원하는 경우 소문자를 사용할 수 있습니다.

  • 후행 공백이 없습니다. 허용되는 유일한 추가 공백은 프로그램 끝의 후행 줄 바꿈입니다.

더욱이,

  • 이벤트가 반드시 순서대로 제공되는 것은 아닙니다. 그래도 날짜는 배열에서의 위치에 따라 여전히 표시됩니다. 예를 들어, 입력은 [2, 3, 1, 5, 4]반드시 출력

    <------->
      CABED
    
  • 입력으로 하나 이상의 이벤트가 제공 될 수 있습니다. 예를 들어, 입력은 [12345]반드시 출력

    <--->
      A
    
  • 입력에 중복 날짜가 포함되지 않는다고 가정 할 수 있습니다.

입력은 정수 / 문자열의 배열 / 목록 또는 숫자가 아닌 문자로 구분 된 단일 문자열로 제공 될 수 있습니다. 입력으로 제공되는 허용 가능한 날짜 범위는 1 ≤ x ≤ 32767입니다.

이것은 이므로 바이트 단위의 가장 짧은 코드가 승리합니다.

테스트 사례 :

32767 32715 32716 32750 32730 32729 32722 32766 32740 32762
<------------------------------------------------------->
  BC     G      FE         I         D           J   HA
2015 2014
<---->
  BA
1990 1996 1999 2011 2016
<----------------------------->
  A     B  C           D    E
2 3 1 5 4
<------->
  CABED
12345
<--->
  A

답변:


5

Pyth, 37 36 35 34 바이트

:*dlp++\<*\-+3-eJSQhJ">
"mhh-dhJQG

설명 : (이를 위해 개행 문자는 \n단순화를 위해 바뀔 것입니다 )

:*dlp++\<*\-+3-eJSQhJ">\n"mhh-dhJQG

                                    - autoassign Q = eval(input())
                                    - G = "abcdefghijklmnopqrstuvwxyz"

    p++\<*\-+3-eJSQhJ">\n"          -    print out the first line

            +3-eJSQhJ               -        Get the number of dashes
                 SQ                 -            sorted(Q)
                J                   -           autoassign J = ^
               e                    -          ^[-1]
              -                     -         ^-V
                   hJ               -          J[0]
            +3                      -        ^+3

         *\-                        -       ^*"-"
      +\<                           -      "<"+^
     +               ">\n"          -     ^+"-->\n"
    p                               -    print(^)

 *dl                                -  work out the number of spaces to print
   l                                -   len(^)
 *d                                 -  ^*" "
:                                 G - For i in V: ^[i] = G[i]
                          mhh-dhJQ  -  Work out the positions of the characters
                          m      Q  -  [V for d in Q]
                               hJ   -     J[0]
                             -d     -    d-^
                           hh       -   ^+2

여기 사용해보십시오!


5

PowerShell을 120 108 바이트

param($a)$n,$m=($a|sort)[0,-1];"<$('-'*($b=$m-$n+3))>";$o=,' '*$b;$i=97;$a|%{$o[$_-$n+2]=[char]$i++};-join$o

입력을 받아 $a세트 다음 $n$m각각 최소 및 최대 값. $(...)문자열 내에서 코드 블록을 실행 하여 적절한 수의 -문자 를 생성하여 다음 섹션으로 타임 라인을 출력합니다 . 그런 다음 공백 만 포함하는 동일한 길이의 배열을 생성하고 출력 문자를로 설정합니다 $i.

그런 다음로 입력 $a을 반복합니다 |%{...}. 각 루프는 적절한 $o값 을 설정합니다 . 마지막으로 우리는 -join $o함께 문자열을 형성합니다. 그것이 파이프 라인에 남아 있기 때문에 출력은 암시 적입니다.

.TrimEnd()의 마지막 문자 $o가 항상 문자임을 보장 하므로 명령 을 제거하도록 편집되었습니다 .

PS C:\Tools\Scripts\golfing> .\draw-a-timeline.ps1 2015,2014,2000
<------------------>
  c             ba

4

C - 294 287 220 191 184 178 174 바이트

다소 미친 코드로 쳐다 본 후 나는 적어도 그것을 조금 얻었습니다 ...

참고 : 첫 번째 루프에는 바이너리 실행시 atoi()on의 결과로 0이 필요 argv[0]합니다. 그렇지 않으면 이진 (이름)이 이벤트로 포함됩니다. 무효화되는 예 :

$ 42/program 1 2 3
# 42/program gives 42 from argv[0], fail.

$ 1program 3 2 9
# 1program gives 1 from argv[0], fail.

$ 842 3 2 9
# 842 gives 842 from argv[0], fail.

이것이 유효한 요구 사항인지 확실하지 않습니다.

char y[32769];n,m;main(i,a)char**a;{for(;n=atoi(a[--i]);y[n>m?m=n:n]=64+i);for(;!y[++i];);printf("<");for(n=i;i<=m;i+=printf("-"))!y[i]?y[i]=' ':0;printf("-->\n  %s\n",y+n);}

운영:

./cabed 32767 32715 32716 32750 32730 32729 32722 32766 32740 32762
<------------------------------------------------------->
  BC     G      FE         I         D           J   HA

./cabed 2 1 3 5 4
<------->
  BACED

./cabed 2016
<--->
  A

./cabed 130 155 133 142 139 149 148 121 124 127 136
<------------------------------------->
  H  I  J  A  C  K  E  D     GF     B

언 골프 드 :

#include <stdio.h>
#include <stdlib.h>

char y[32769]; /* Zero filled as it is in global scope. */
int n, m;

int main(i, a) 
    char**a; 
{
    /* Loop argv and set y[argv[i] as int] = Letter, (Event name).
     * Set m = Max value and thus last data element in y. */
    for ( ; n = atoi(a[--i]); y[n > m ? m = n : n] = 64 + i)
        ;

    /* i = 0. Find first element in y that has a value. (Min value.) */
    for (; !y[++i]; )
        ;

    printf("<");

    /* Save min value / y-index where data starts to n.
     * Print dashes until y-index = max 
     * Build rest of event string by filling in spaces where no letters.*/
    for (n = i; i <= m; i += printf("-"))
        !y[i] ? y[i] = ' ' : 0;

    printf("-->\n  %s\n", y + n);

    return 0;
}

3

MATL , 40 41 바이트

0lY2in:)GtX<-I+(t~32w(ctn45lbX"60hP62hcw

온라인으로 사용해보십시오!

0          % array initiallized to 0
lY2        % string 'ABC...Z'
in:)       % input array. Take as many letters as its length
GtX<-I+    % push input again. Duplicate, subtract minimum and add 3
(          % assign selected letter to those positions. Rest entries are 0
t~32w(     % replace 0 by 32 (space)
c          % convert to char
tn45lbX"   % duplicate, get length. Generate array of 45 ('-') repeated that many times
60hP62h    % prepend 60 ('<'), postpend 62 ('>')
c          % convert to char
w          % swap. Implicit display

2

루비, 83 자

->a{n,m=a.minmax
s=' '*(d=m-n+3)
l=?@
a.map{|i|s[i-n+2]=l.next!}
puts ?<+?-*d+?>,s}

샘플 실행 :

irb(main):001:0> ->a{n,m=a.minmax;s=' '*(d=m-n+3);l=?@;a.map{|i|s[i-n+2]=l.next!};puts ?<+?-*d+?>,s}[[32767,32715,32716,32750,32730,32729,32722,32766,32740,32762]]
<------------------------------------------------------->
  BC     G      FE         I         D           J   HA

2

자바 스크립트 (ES6), 124

l=>(l.map(v=>r[v-Math.min(...l)]=(++i).toString(36),r=[],i=9),`<-${'-'.repeat(r.length)}->
  `+[...r].map(x=>x||' ').join``)

테스트

F=
l=>(l.map(v=>r[v-Math.min(...l)]=(++i).toString(36),r=[],i=9),`<-${'-'.repeat(r.length)}->
  `+[...r].map(x=>x||' ').join``)

console.log=x=>O.textContent+=x+'\n'

test= [[32767,32715,32716,32750,32730,32729,32722,32766,32740,32762],
[2015,2014],[1990,1996,1999,2011,2016],[2,3,1,5,4],[12345]]

test.forEach(x=>console.log(x+'\n'+F(x)+'\n'))
<pre id=O></pre>


2

PHP, 129 126 125 121 117 115 바이트

ISO 8859-1 인코딩을 사용합니다.

$l=min([$h=max($z=$argv)]+$z)-3;echo~str_pad(Ã,$h-$l,Ò).~ÒÁõ;for(;$l<$h;)echo chr((array_search(++$l,$z)-1^32)+65);

다음과 같이 실행하십시오 ( -d미학에만 추가됨).

php -r '$l=min([$h=max($z=$argv)]+$z)-3;echo~str_pad(Ã,$h-$l,Ò).~ÒÁõ;for(;$l<$h;)echo chr((array_search(++$l,$z)-1^32)+65);' 1990 1996 1999 2016 2011 2>/dev/null;echo

언 골프 버전 :

// Get the highest input value.
$h = max($z = $argv);

// Get the lowest value, setting the first argument (script name) to the highest
// so it is ignored.
$l = min([$h] + $z);

// Output the first line.
echo "<".str_repeat("-",$h - $l + 3).">\n  ";

// Iterate from $l to $h.
for(;$l <= $h;)
    // Find the index of the current iteration. If found, convert the numeric
    // index to a char. If not found, print a space.
    echo ($s = array_search($l++, $z)) ? chr($s+64) : " ";
  • 루프에서 선행 공백을 인쇄하고로 변경 <=하여 3 바이트를 절약 했습니다 <.
  • str_pad대신을 사용하여 바이트를 저장했습니다 str_repeat.
  • 비트 논리를 사용하여 0 ( false)을 32 로 변환하고 0 이상을 97 이상 으로 변환하여 4 바이트를 절약 했습니다. 그런 다음 해당 숫자를 char로 변환하십시오.
  • 수율 부정 확장 ASCII를 사용하여 4 바이트를 저장 <, -, >및 줄 바꿈
  • 이전이 아닌 패딩 후 문자열을 무효화하여 2 바이트를 절약했습니다.

1

펄, 109 바이트

+1 포함 -p

$l=A;s/\d+/$h{$&}=$l++/ge;($a,$z)=(sort keys%h)[0,-1];$o.=$h{$_}//$"for$a..$z;$_='<'.'-'x($z-$a+3).">$/  $o"

stdin에 입력을 예상합니다 : 공백으로 구분 된 숫자. 예:

$ echo 2016 2012 2013 | perl -p file.pl
<------->
  BC  A

다소 읽기 쉬운 :

$l=A;                                   # Intialize $l with the letter A
s/\d+/$h{$&}=$l++/ge;                   # construct %h hash with number->letter
($a,$z) = (sort keys %h)[0,-1];         # grab min/max numbers
$o .= $h{$_} // $" for $a..$z;          # construct 2nd line: letter or space
$_= '<' . '-' x ($z-$a+3) . ">$/  $o"   # construct 1st line, merge both lines to $_ output

1

파이썬 2, 173 172 182 바이트

파이썬이 아직 없기 때문에 여기에 첫 번째 게시물이 있습니다.

import sys
d=dict([(int(v),chr(65+i))for(i,v)in enumerate(sys.argv[1:])])
k=sorted(d.keys())
f=k[0]
s=k[-1]-f+3
o=list(" "*s)
for i in k:o[i-f+2]=d[i]
print "<"+"-"*s+">\n"+"".join(o)

원본은 다음과 같습니다.

import sys

dates = dict([(int(v), chr(65+i)) for (i,v) in enumerate(sys.argv[1:])])
keys = sorted(dates.keys())
first = keys[0]
out_size = keys[-1] - first + 3
out = list(" " * out_size)
for date in keys: out[date - first + 2] = dates[date]
print "<" + "-" * out_size + ">\n" + "".join(out)

1
당신 import sys은 당신의 골프 버전에 필요 합니다.
Mego

좋아, 그래도되지만 골프 버전에서는 수입품을 본 적이 없어서 방금 그만 두었다
BloodyD

0

그루비, 106 99 자

{n=it.min()
o=[l="A"]
it.each{o[it-n]=l++}
"<${"-"*(it.max()-n+3)}>\n  "+o.collect{it?:" "}.join()}

샘플 실행 :

groovy:000> print(({n=it.min();o=[l="A"];it.each{o[it-n]=l++};"<${"-"*(it.max()-n+3)}>\n  "+o.collect{it?:" "}.join()})([32767,32715,32716,32750,32730,32729,32722,32766,32740,32762]))
<------------------------------------------------------->
  BC     G      FE         I         D           J   HA
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.