Реалізуйте гольфіст з пробілів


15

Деякі двовимірні езоланг, такі як Forked та деякі не-езоланги, такі як Python , іноді потребують пробілів перед рядками коду. Це не дуже сильно. Крім того, я лінивий і пишу 2d-язик, який потребує багато пробілів перед кодом. Ваше завдання - написати інструмент, який робить ці мови гольфістами.

Звичайно, це не буде ідеально; його не можна використовувати, наприклад, коли число є першим символом у рядку джерела. Однак, як правило, це буде корисно.

Виклик

Ви напишете програму або функцію, яка або ...

  • ... бере один аргумент, ім'я файлу або рядок, або ...
  • ... читає зі стандартного вводу.

Ваша програма буде діяти як cat, за винятком:

  • Якщо першим символом у будь-якому рядку є число, ваш код буде надрукувати x пробіли, де x - це число.
  • В іншому випадку він буде просто надрукований.
  • Як і будь-який інший символ у вводі.

Тестові справи

Вхід:

foo bar foo bar
1foo bar foo bar foo bar
2foo bar foo bar foo bar foo bar

Вихід:

foo bar foo bar
 foo bar foo bar foo bar
  foo bar foo bar foo bar foo bar

Вхід:

--------v
8|
8|
80
8,
7&

Вихід:

--------v
        |
        |
        0
        ,
       &

Вхід:

foo bar
bar foo
foo bar

Вихід:

foo bar
bar foo
foo bar

Вхід:

0123456789
1234567890
2345678901
3456789012
4567890123

Вихід:

123456789
 234567890
  345678901
   456789012
    567890123

Правила

  • Вихід повинен бути точно вхідним, за винятком рядків, де перший символ є числом.
  • Ваша програма не може додавати / додавати до файлу нічого, окрім одного зворотного нового рядка, якщо бажаєте.
  • Ваша програма може не робити жодних припущень щодо введення даних. Він може містити порожні рядки, ніяких чисел, символів Unicode, будь-якого іншого.
  • Якщо число з більш ніж однією цифрою починає рядок (наприклад 523abcdefg), лише перша цифра (у прикладі 5) повинна перетворюватися на пробіли.

Переможець

Виграє найкоротший код у кожній мові. Весело та удачі!



6
Of course, this will not be perfect; it cannot be used, for instance, when a number is the first character on a line of source.Неправда, просто зробіть першого персонажа 0 (ах, ваш останній тестовий випадок)
HyperNeutrino

Чи можемо ми прочитати список рядків з stdin ( чи справді це )?
Райлі

Відповіді:



10

Кубічно , 69 байт

R1B1R3B1~(+50<7?6{+54>7?6{-002+7~?6{(@5*1-1/1)6}}}(-6>7?6&@7+70-4~)6)

Спробуйте в Інтернеті!

Пояснення:

Спочатку робимо цю ініціалізацію:

R1B1R3B1

Щоб встановити цей куб:

   533
   004
   000
411223455441
311222331440
311222331440
   555
   555
   200

Найголовніше, що стосується цього куба, - це 5суми номіналу до 32, тобто значення, необхідне для друку пробілів. Випадково він також виявляється досить коротким для всіх інших обчислень. Після цього робиться:

~( . . . )                                    Takes the first input, then loops indefinitely

  +50<7?6{+54>7?6{-002+7~?6{(@5*1-1/1)6}}}    Handle leading digit:
  +50<7?6{                               }    If input is greater than 47 ('0' is 48)
          +54>7?6{                      }     And input is less than 58 ('9' is 57)
                                              Then input is a digit
                  -002+7                      Set notepad equal to value of input digit
                        ~                     Take next input (only convenient place for it)
                         ?6{           }      If the notepad isn't 0
                            (        )6       While the notepad isn't 0:
                             @5                 Print a space
                               *1-1/1           Decrement the notepad by one
                                              Leading digit handled

     (-6>7?6&@7+70-4~)6                       Handle rest of line:
     (               )6                       While the notepad isn't 0:
      -6>7?6&                                   Exit if End of Input
             @7                                 Print the next character
               +70-4                            Set notepad to 0 if it was a newline
                    ~                           Take the next character

1
Нічого собі, це добре використовувати вкладене ... все. +1
MD XF

6

Лушпиння , 15 13 байт

-2 байти завдяки @Zgarb

mΓo+?oR' i;±¶

Спробуйте в Інтернеті!

Використовує ту ж техніку, що і @Jonathan Allan

Пояснення

             ¶  -- split input into a list of lines
m               -- apply the following function to each line
 Γ              --   deconstruct the string into a head and a tail
  o+            --   prepend to the tail of the string ...
    ?      ±    --     if the head is a digit (n)
     oR' i      --       the string of n spaces
                --     else
          ;     --       the head of the string
                -- implicitly print list of strings line-by-line

2
13 байт із використанням Γ.
Згарб

5

JavaScript (ES8), 38 37 байт

a=>a.replace(/^\d/gm,a=>''.padEnd(a))

Я не думаю, що це може бути покращено набагато більше.
Збережено 1 байт завдяки Shaggy - Використовуйте функції ES8.


" Я не думаю, що це може бути покращено набагато більше. " - Ви можете зберегти байт, скориставшись padEndтаким чином ES8 :s=>s.replace(/^\d/gm,m=>"".padEnd(m))
Shaggy

@Shaggy. Я не знав, що ES8 вже дозволено. Спасибі.

1
Якщо там є якийсь один перекладач (тобто браузер), який підтримує функцію, то ця функція тут є чесною грою :)
Shaggy

4

Пітон 2 , 98 74 67 65 байт

-24 байти завдяки Джонатану Аллану. -7 байт завдяки спадару Xcoder.

for i in open('f'):print' '*int(i[0])+i[1:]if'/'<i[:1]<':'else i,

Спробуйте в Інтернеті!

Здійснює введення у файлі з ім’ям f.


Також помилки, коли в першому символі рядка немає цифри (при використанні списку як способу вибору елементів оцінюються всі елементи)
Джонатан Аллан


87 байт - заголовок посилання TIO глузує open; код очікує файл з назвою 'f'. Я думаю, що це нормально?
Джонатан Аллан

Ах, правда ' '*0фальси. Використання [:1]все ще є економією. Немає необхідності readЯ вважаю (і це буде readlines) , оскільки поведінка за умовчанням openне є ітерація по лініях. Також немає необхідності в режимі, оскільки 'r'це за замовчуванням. Якщо я правий, це 73 !
Джонатан Аллан


4

Рубі , 24 21 + 1 = 25 22 байти

Використовує -pпрапор. -3 байти від ГБ.

sub(/^\d/){"%#$&s"%p}

Спробуйте в Інтернеті!


{"% # $ & s"% ""} зберігає 1 байт
GB

І ще один байт, якщо ви використовуєте sub замість gsub
GB

@GB та інший байт, поставивши %pв кінці замість %"". Спасибі за вашу допомогу!
Значення чорнила

3

1
Як здійснюється один вхід з порожніми рядками?
Джонатан Аллан

Не маю ідеї, хай ... Я перегляну це
Олівер Ні

|vy¬dićú},працює на 10 байт.
Райлі

Гаразд, це не один не може ввести порожній рядок, це те, що код не працює для порожнього рядка : якщо один використовує один нуль, він працює, значить, він повинен мати щось про голову, що не існує (те саме стосується запропонованих @ Riley 10) байт до речі).
Джонатан Аллан

@JonathanAllan Це щось стосується способу |роботи. Це передбачається push the rest of input as an array with strings, але він зупиняється на порожніх рядках ( TIO ). Я підняв це у чаті 05AB1E, якщо ви хочете дізнатися більше.
Райлі


2

Желе , 19 байт

V⁶ẋ
Ḣǹe?ØD;
ỴÇ€Yḟ0

Монадічне посилання, що приймає та повертає списки символів, або повну програму, що друкує результат.

Спробуйте в Інтернеті!

Як?

V⁶ẋ - Link 1, make spaces: character (a digit)
V   - evaluate as Jelly code (get the number the character represents)
 ⁶  - a space character
  ẋ - repeat

Ḣǹe?ØD; - Link 2, process a line: list of characters
Ḣ        - head (get the first character and modify the line)
         -   Note: yields zero for empty lines
     ØD  - digit characters = "0123456789"
    ?    - if:
   e     - ...condition: exists in? (is the head a digit?)
 Ç       - ...then: call the last link as a monad (with the head as an argument)
  ¹      - ...else: identity (do nothing; yields the head)
       ; - concatenate with the beheaded line

ỴÇ€Yḟ0 - Main link: list of characters
Ỵ      - split at newlines
 Ç€    - call the last link (1) as a monad for €ach
   Y   - join with newlines
    ḟ0 - filter out any zeros (the results of empty lines)

beheaded lineЦе власне термін? xD
HyperNeutrino

1
Що ж, зараз :)
Джонатан Аллан

Ахахаха, я спробував перемогти тебе і закінчив рішення, принципово ідентичне
твоєму


2

Haskell , 63 байти

unlines.map g.lines
g(x:r)|x<';',x>'/'=(' '<$['1'..x])++r
g s=s

Спробуйте в Інтернеті! Перший рядок - це анонімна функція, яка розбиває заданий рядок на рядки, застосовує функцію gдо кожного рядка та з'єднує отримані рядки з новими рядками. У gній перевіряється, чи є перший символ xрядка цифрою. Якщо це так, то ['1'..x]виводиться рядок, довжина якого дорівнює значенню цифри xі ' '<$перетворює рядок у стільки пробілів. Нарешті rдодається решта рядка . Якщо xце не цифра, ми знаходимось у другому рівнянні g s=sі повертаємо рядок немодифікованою.


2

Python 2 , 76 72 68 байт

-4 байти завдяки @ovs !

@DeadPossum запропонував перейти на Python 2, що також зберегло 4 байти.

Просто подумав, що приємно мати повноцінну конкурентну програму в Python 2, яка не чітко перевіряє, чи є перший символ цифрою. Вона зчитує вхідні дані з файлу, f.

for i in open('f'):
 try:r=int(i[0])*" "+i[1:]
 except:r=i
 print r,

Спробуйте в Інтернеті! (люб’язно надано @ovs )


@ovs Дякую за це
містер Xcoder

@ovs What did you change (I will do it by hand) ? It tells me that the permalink cannot be decoded
Mr. Xcoder

Instead of printing in every iteration I assigned the output to a variable and printed it all at the end.
ovs

@ovs I managed to get 72 bytes by printing every iteration, thanks for the variable idea!
Mr. Xcoder

Python 2 version of print will give you 68 bytes
Dead Possum

2

Java 8, 105 99 97 93 bytes

Saved few more bytes thanks to Nevay's suggestion,

s->{int i=s.charAt(0);if(i>47&i<58)s=s.substring(1);while(i-->48)s=" "+s;System.out.print(s);}

1
You have two bugs in your golfed version: The digit check has to use and instead of or; The brackets after the digit check are missing. Besides that you can save a few bytes by using s->{int i=s.charAt(0);if(i>47&i<58)for(s=s.substring(1);i-->48;s=" "+s);System.out.print(s);} (93 bytes).
Nevay

@Nevay You are right. Thanks. I'll update my answer.
CoderCroc

2

R, 138 128 bytes

-9 bytes thanks to CriminallyVulgar

n=readLines();for(d in grep("^[0-9]",n))n[d]=gsub('^.?',paste0(rep(' ',eval(substr(n[d],1,1))),collapse=''),n[d]);cat(n,sep='
')

This is pretty bad, but it's a bit better now... R is, once again, terrible at strings.

Try it online!


2
I am commenting on behalf of CriminallyVulgar, who suggests a 129-byte version, but does not have enough reputation to comment.
Mr. Xcoder

@Mr.Xcoder Thank you and @CriminallyVulgar!
Giuseppe

123 Bytes Apparently rep can take a string of an int for the second argument???
CriminallyVulgar

@CriminallyVulgar huh. it's right there in the docs for rep, now that I check them again: "other inputs being coerced to an integer or double vector".
Giuseppe

2

Japt (v2.0a0), 11 10 bytes

Japt beating Jelly and 05AB1E? That doesn't seem right!

r/^\d/m_°ç

Test it


Explanation

Implicit input of string U

r/^\d/m

Use Regex replace (r) all occurrences of a digit at the beginning of a line (m is the multiline flag - the g flag is enabled by default in Japt).

_

Pass each match through a function, where Z is the current element.

°

The postfix increment operator (++). This converts Z to an integer without increasing it for the following operation.

ç

Repeat a space character Z times.

Implicitly output the resulting string.


Can m@ be shortened?
Oliver

Not in this case, @Oliver; the m here is the multi-line flag for the regex, not the map method.
Shaggy

1
@Oliver: r/^\d/m_î (or r/^\d/m_ç) would be 2 bytes shorter but Z is a string so, unfortunately, it wouldn't work. r/^\d/m_°ç, for a 1 byte saving, does work, though :)
Shaggy

°ç is an amazing trick :-) I'd have suggested just \d for the regex, but that leaves out the flag... perhaps I should add support for flags on single-class regexes, like \dm (oh yeah, and that leaves out the ^ too...)
ETHproductions

@ETHproductions, would it be feasible/possible to make the opening / optional in RegExes?
Shaggy

1

Jelly, 19 bytes

Ḣ⁶ẋ;µ¹µḣ1ẇØDµ?
ỴÇ€Y

Try it online!

-5 bytes total thanks to Jonathan Allan's comments and by looking at his post

Explanation

Ḣ⁶ẋ;µ¹µḣ1ẇØDµ?  Main link
             ?  Ternary if
                if:
       ḣ1       the first 1 element(s) (`Head` would modify the list which is not wanted)
         ẇ      is a sublist of (essentially "is an element of")
          ØD    "0123456789"
                then:
  ẋ             repeat
 ⁶              ' '
Ḣ               n times where n is the first character of the line (head)
   ;            concatenate the "beheaded" string (wording choice credited to Jonathan Allan)
                else:
     ¹          Identity (do nothing)
    µ µ     µ   Link separators
ỴÇ€Y            Executed Link
Ỵ               Split by newlines
  €             For each element,
 Ç              call the last link on it
   Y            Join by newlines

no need to swap arguments: Ḣ⁶ẋ;
Jonathan Allan

The pop then head trick wont work if there is a line containing only a single digit character :( -- ;0Ḣ would work for one byte, maybe there is a single atom, I also tried ¹, no joy there
Jonathan Allan

1
@JonathanAllan Ah right. Thanks. ḣ1ẇØD works for the same bytecount \o/
HyperNeutrino

ṚṪ will work :)
Jonathan Allan

@JonathanAllan That works too :) But I made an explanation already for my method so I'm too lazy to change it :P But thanks anyway :)
HyperNeutrino

1

Pyth,  16  15 bytes

jm.x+*;shdtdd.z

Try it online!


Explanation

jm.x+*;shdtdd.z   - Full program that works by reading everything from STDIN.

             .z  - Read all STDIN and split it by linefeeds.
 m               - Map with a variable d.
  .x             - Try:
     *;shd           - To convert the first character to an Integer and multiply it by a space.
    +     td         - And add everything except for the first character
            d        - If the above fails, just add the whole String.
j                 - Join by newlines.

Let's take an example that should be easier to process. Say our input is:

foo bar foo bar
1foo bar foo bar foo bar
2foo bar foo bar foo bar foo bar

The program above will do the following:

  • .z - Reads it all and splits it by newlines, so we get ['foo bar foo bar', '1foo bar foo bar foo bar', '2foo bar foo bar foo bar foo bar'].

  • We get the first character of each: ['f', '1', '2'].

  • If it is convertible to an integer, we repeat a space that integer times and add the rest of the String. Else, we just place the whole String. Hence, we have ['foo bar foo bar', ' foo bar foo bar foo bar', ' foo bar foo bar foo bar foo bar'].

  • Finally, we join by newlines, so our result is:

    foo bar foo bar
     foo bar foo bar foo bar
      foo bar foo bar foo bar foo bar
    

1
Haha, we beat Jelly :)
Mr. Xcoder

1

Cubically, 82 bytes

R3D1R1D1+0(?6{?7@7~:1+2<7?6{+35>7?6{:7-120?6{(B3@5B1-0)6}:0}}}?6!@7~-60=7&6+4-3=7)

Note: This will not work on TIO. To test this, use the Lua interpreter with the experimental flag set to true (to enable conditionals). There's currently a bug with conditional blocks on the TIO interpreter. When using the TIO interpreter, you should replace ?6! with !6 and &6 with ?6&, which keeps the byte count the same.

R3D1R1D1          Set the cube so that face 0 has value 1 and the rest of the values are easy to calculate

+0                Set the notepad to 1 so that it enters the conditional below
(                 Do
  ?6{               If the notepad is 1 (last character was \n or start of input)
    ?7@7              Output the current character if it's \n
    ~                 Get the next character
    :1+2<7?6{         If the input is >= '0'
      +35>7?6{          If the input is <= '9'
        :7-120            Set the notepad to the input - '0'
        ?6{               If the notepad isn't 0
          (                 Do
            B3@5              Output a space
            B1-0              Subtract 1 from notepad
          )6                While notepad > 0
        }                 End if
        :0              Set notepad to 1
      }                 End if
    }                 End if
  }                 End if

  ?6!@7             If the notepad is 0 (did not attempt to print spaces), print current character

  ~                 Get next character
  -60=7&6           If there is no more input, exit the program
  +4-3=7            Check if current character is \n, setting notepad to result
)                 Repeat forever

This isn't as short as the other Cubically answer, but I thought I'd give this a try anyway :D


What's going on with loops in the TIO interpreter?
MD XF

@MDXF ) jumps to the most recent ( rather than the matching one I believe. EDIT: I'm in the chat.
TehPers

@MDXF Maybe it was the conditional blocks, actually. I forgot, I'll update the answer. Regardless, they weren't matching up.
TehPers

1
All right, I'll look at that later. I'm currently finishing Cubically 2.
MD XF

@MDXF That's... really exciting to hear actually o_O
TehPers

1

><>, 60 bytes

!^i:0(?;::"/")$":"(*0$.
v"0"-
>:?!v1-" "o
;>:o>a=&10&?.i:0(?

Try it online!

How It Works:

..i:0(?;... Gets input and ends if it is EOF
...
...
...

.^......::"/")$":"(*0$. If the inputted character is a digit go to the second line
...                     Else go to the fourth
...
...

....        If it was a digit
v"0"-       Subtract the character "0" from it to turn it into the corresponding integer
>:?!v1-" "o And print that many spaces before rejoining the fourth line
...

.^..               On the fourth line,
....               Copy and print the input (skip this if it was a digit)
....v              If the input is a newline, go back to the first line.
;>:o>a=&10&?.i:0(? Else get the input, ending on EOF

0

V, 9 bytes

ç^ä/x@"é 

Try it online!

Explanation

ç  /      ' On lines matching
 ^ä       ' (Start)(digit)
    x     ' Delete the first character
     @"   ' (Copy Register) number of times
       é  ' Insert a space

0

Gema, 21 characters

\N<D1>=@repeat{$1;\ }

Sample run:

bash-4.4$ gema '\N<D1>=@repeat{$1;\ }' <<< 'foo bar foo bar
> 1foo bar foo bar foo bar
> 2foo bar foo bar foo bar foo bar
> 
> --------v
> 8|
> 8|
> 80
> 8,
> 7&'
foo bar foo bar
 foo bar foo bar foo bar
  foo bar foo bar foo bar foo bar

--------v
        |
        |
        0
        ,
       &

0

PHP, 83 chars

preg_replace_callback('/^\d/m',function($m){return str_repeat(' ',$m[0]);},$argv);

I think your code is not compliant with the input rules of this challenge, you should enclose this in a function with a $s arg or populate it with the input. And it doesn't print anything
LP154

@LP154 is using argv acceptable?
Petah

@Petah If I'm correct in assuming argv is the command line args, then yes.
totallyhuman
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.