适用于Internet的更好的十六进制颜色代码


46

十六进制三胞胎(例如#ffffff(白色)或#3764ef(蓝色))通常用于表示RGB颜色。它们由#六个十六进制数字(0-f)或有时由三个数字组成,其中通过将每个数字加倍获得真实色彩。例如,#fffis #ffffff#1a8is #11aa88

可悲的是,这三个数字速记是互联网有可能的报价,golfiest 直到现在

编写一个包含1到7个字符的字符串的程序或函数:

  • 第一个字符将始终为#
  • 其他字符将始终为十六进制数字:0123456789abcdef

输入是十六进制三元组的简写形式(如果给出7个字符,则为完整形式)。您需要输出完整的十六进制三元组,以根据以下模式扩展输入速记:

Input   -> Output
#       -> #000000    (black)
#U      -> #UUUUUU
#UV     -> #UVUVUV
#UVW    -> #UUVVWW    (usual 3-digit shorthand)
#UVWX   -> #UXVXWX
#UVWXY  -> #UVWXYY
#UVWXYZ -> #UVWXYZ    (not shorthand)

每一个UVWXY,和Z可以是任何十六进制数字。输出始终为7个字符。

例如:

Input -> Output
# -> #000000
#0 -> #000000
#4 -> #444444
#f -> #ffffff
#a1 -> #a1a1a1
#0f -> #0f0f0f
#99 -> #999999
#1a8 -> #11aa88
#223 -> #222233
#fff -> #ffffff
#1230 -> #102030
#d767 -> #d77767
#bbb5 -> #b5b5b5
#aabbc -> #aabbcc
#00000 -> #000000
#3764e -> #3764ee
#3764ef -> #3764ef
#123456 -> #123456
#f8f8f8 -> #f8f8f8

笔记

  • 输入将始终以开头,#输出也必须以。

  • 您可以根据需要假定所有输入字母均为小写(abcdef)或大写(ABCDEF)。

  • 您可以根据需要选择输出中的字母。您甚至可以混合使用大小写。

  • 这里不处理Alpha /透明度(尽管有RGBA颜色的十六进制版本)。

以字节为单位的最短代码获胜。


11
可悲的是,到现在为止,这三位数的速记是互联网上提供的最先进的功能。 ”-呃,不完全是。HTML,0字节-开箱即用
Bergi

11
反过来也将是一个很酷的挑战
Beta Decay's

9
我不满意该#UVWXY -> #UVWXYY条目,因为它允许Blue通道使用单值表示,但是Red和Green没有类似的表达(例如,如果我希望#889071我不能缩写,但是#907188可以...和#90718其他形式一样)一切都很好。
Draco18s

3
@ Draco18s我喜欢它。那一个和那个#UVWX -> #UXVXWX。这种不一致和任意的行为,很难让人相信目前没有几个浏览器真正实现它。
xDaizu

1
@xDaizu CSS规范具有#RGBA#RRGGBBAA,因此#1234应该读为rgba(17, 34, 51, 0.25)
tsh

Answers:


13

JavaScript, 86 82 77字节

x=>([s,a=0,b=a,c,d,e,f]=x,f?x:e?x+e:[s,a,d||a,c?b:a,d||b,v=c||b,d||v].join``)

只是发现删除递归保存4个字节...

@Arnauld的想法可节省4个字节,再增加+1个字节


([s,a=0,b=a,c,d,e,f]=x)=>f?x:e?x+e:d?s+a+d+b+d+c+d:c?s+a+a+b+b+c+c:s+a+a+a+b+b+b80个字节
路加福音

@Luke我刚得到ReferenceError: x is not defined
tsh

6

果冻,24 字节



x2
j0ị$
m0

0
Ḣ;LĿṁ6$$

完整的程序(空行实际上是空行)。

在线尝试!或查看测试套件 *

怎么样?

     - Link 1 (0 bytes), returns its input (e.g. "U" -> "U")
     - Link 2 (0 bytes), returns its input (e.g. "UV" -> "UV")
x2   - Link 3, doubles up (e.g. "UVW" -> "UUVVWW")
j0ị$ - Link 4, joins with final element (e.g. "UVWX" -> "UXVXWXX")
m0   - Link 5, reflects its input (e.g. "UVWXY" -> "UVWXYYXWVU")
     - Link 6 (0 bytes), returns its input (e.g. "UVWXYZ" -> "UVWXYX")
0    - Link 7, returns zero (link 7 is also link 0 since there are 7 links)
Ḣ;LĿṁ6$$ - Main link: string
Ḣ        - head (get the '#')
       $ - last two links as a monad:
   Ŀ     -   call link at index:
  L      -     length
      $  -   last two links as a monad:
    ṁ6   -     mould like 6 (e.g. "UVWXYYXWVU" -> "UVWXYY"
         -                    or  "UV" -> "UVUVUV")
 ;       - concatenate (prepend the '#' again)
         - implicit print

*测试套件程序必须通过交换Main linkand 的顺序进行更改Link 7,而页脚变为Main Link。此外#,由于程序是按原样运行的,因此必须手动替换。



4

PHP 7.1,88字节

#<?for(;$i<6;)echo@$argn[_22222232532233423355224462[5*$i+++strlen($argn|aa)*.85]-1]?:0;

PHP 5,90 88字节

#<?for(;$i<6;)echo$argn[_10311001122011333002244012345[6*$i+++strlen($argn|aa)-8]+1]?:0;

我不知道您如何得到这个想法,但是它有效。工作_21422112233122444113355123456[6*$i+++strlen($argn|aa)-8]
约尔格Hülsermann

1
您能解释一下这是如何工作的吗?
布赖恩H.17年

这一个很好!它将偏移量存入$argn21422112233122444113355123456并根据strlen选择正确的偏移量。aa将字符串填充到至少2个字符。上输入#不存在$argn[1]这样?:0输出0。这也适用0于字符串中的on 。我见过的最好的答案之一!可悲的是,它并没有付出太多(让约尔格的答案下降到了95)。
克里斯多夫(Christoph)

1
哈哈,这是我一段时间以来对PHP自动字符串的最大滥用。+1
ETH生产活动'17

1
@Christoph第二个版本需要的PHP版本下7.1和PHP版本5.6我想添加这个应该说明清楚
约尔格Hülsermann

3

PHP,95 93 89 87

<?=strtr(_1.intval([a6n,sot,c8c,lba,vf1,vf2][strlen($argn|aa)-2],33),_134256,$argn.=0);

基本上是@JörgHülsermann的答案,但是打得很低,所以我决定将它发布为单独的答案。我认为这个答案是我和Jörg的共同努力。

-4 bytes thanks to @JörgHülsermann
-1 bytes thanks to @JörgHülsermann's base 33 numbers

3

Python 3中,166个 162 160 152字节

import re
lambda x,d='(.)$',b=r'\1':re.sub(*[('$','0'*6),(d,b*6),('(..)$',b*3),('(\w)',b*2),('.'+'(.)'*4,r'#\1\4\2\4\3\4'),(d,b*2),('','')][len(x)-1],x)

我为每种模式构造了一个正则表达式替换元组的列表,然后在index处提取该元组len(x)-1,最后将(*)展开为以下参数re.sub

lambda x, d='(.)$', b=r'\1':   # lambda expression, save often used strings
  re.sub(   # regex replacement of:
         *  # expand what follows into arguments, i.e. f(*(1,2)) -> f(1,2)
         [  # list of replacement patterns:
            # 1 character: replace the end with 6 zeroes
            ('$', '0'*6),
            # 2 chars: repeat the last character 6 times
            (d, b*6),
            # 3 chars: repeat the two non-#s 3 times.
            ('(..)$', b*3),
            # 4 chars: replace every non-# with twice itself
            ('(\w)', b*2),
            # 5 chars: has to be somewhat verbose..
            ('.'+'(.)'*4, r'#\1\4\2\4\3\4'), 
            # 6 chars: repeat the last character
            (d, b*2),
            # 7 chars: complete already, replace nothing with nothing
            ('', '')
         ][len(x)-1], # select the element from the list that has the right length
        x)  # replace in argument x

通过记忆节省了8个字节r'\1'(谢谢GáborFekete)


1
不会将其r'\1'用作命名参数节省一些字节吗?
加博尔·费克特(GáborFekete)

1
你写o=r'\1',但用b在你的代码:d
的Gabor菲克特

1
@GáborFekete呐喊:D
L3viathan

3

爪哇10,228个 227 224 182字节

s->{var x="$1$1";int l=s.length();return l>6?s:l>5?s+s.charAt(5):l<2?"#000000":s.replaceAll(l>4?"(.)(.)(.)(.)$":l==3?"([^#]{2})":"([^#])",l>4?"$1$4$2$4$3$4":l>3?x:l>2?x+"$1":x+x+x);}

在线尝试。

说明:

s->{                      // Method with String as both parameter and return-type
  var x="$1$1";         //  Create a temp String to repeat a match
  int l=s.length();     //  Length of the String
  return l>6?           //  If the length is 7:
    s                   //   Return the input-String as is
   :l>5?                //  Else-if the length is 6:
    s+s.charAt(5)       //   Return the input-String with the last character repeated
   :l<2?                //  Else-if the length is 1:
    "#000000";          //   Simply return the literal String #000000
   :                    //  Else (the length is 2, 3, 4, or 5):
    s.replaceAll(       //   Return the input-String after a regex replace:
                        //    With as match:
     l>4?               //     If the length is 5:
      "(.)(.)(.)(.)$",  //      Use a match for pattern #(A)(B)(C)(D)
     :l==3?             //     Else-if the length is 3:
      "([^#]{2})"       //      Use a match for pattern #(AB)
     :                  //     Else (the length is 2 or 4):
      "([^#])",         //      Use a match for pattern #(A) or #(A)(B)(C)
                        //    And as replacement: 
     l>4?               //     If the length is 5:
      "$1$4$2$4$3$4"    //      Change #ABCD to #ADBDCD
     :l>3?              //     Else-if the length is 4:
      x                 //      Change #ABC to #AABBCC
     :l>2?              //     Else-if the length is 3:
      x+"$1"            //      Change #AB to #ABABAB
     :                  //     Else (the length is 2):
      x+x+x);}          //      Change #A to #AAAAAA

2

APL(Dyalog),43字节

要求⎕IO←0在许多系统上是默认设置。

'#',{6⍴(≢⍵)⊃'0' ⍵(2/⍵)(∊⍵,¨⊃⌽⍵)(⍵,⌽⍵)⍵}1↓⍞

在线尝试!

1↓⍞ 删除第一个字符(哈希)

{ 应用以下匿名函数

(≢⍵)⊃ 使用参数的长度来接以下七个值中的一个:
  '0' 一个零
   参数
   的参数
  2/⍵ 2(2每个)(/自变量)(
  ∊⍵,¨⊃⌽⍵ 的平的()的参数(),随后各()由所述第一(的)反向()参数(
  ⍵,⌽⍵ 的自变量()前缀(,)到反转()参数(
   的自变量

6⍴ 从中重复元素直到达到六个长度

} 匿名函数的结尾

'#', 在前面加上一个哈希


2

Python 2中,167个 165字节

-2字节归功于Trelzevir

z=zip
lambda s:'#'+''.join([reduce(lambda x,y:x+y,c)for c in['0'*6,s[1:2]*6,z(s[1:2],s[2:3])*3,z(*z(s[1:2],s[2:3],s[3:4]))*2,z(s[1:4],s[-1]*3),s+s[-1],s][len(s)-1]])

它创建一个字符串列表,并根据字符串的长度进行选择。


1
您可以使用保存2个字节z=zip
特雷泽维尔

2

Sed,119(118字节+ -E

s/#//
s/^$/0/
s/^.$/&&/
s/^..$/&&&/
s/^(.)(.)(.)$/\1\1\2\2\3\3/
s/^(.)(.)(.)(.)$/\1\4\2\4\3\4/
s/^....(.)$/&\1/
s/^/#/

简单的文字替换。


2

PHP,87字节

使用基数35的数字

<?=strtr(_2.intval([i4w,qdi,j1y,apg,ruu,ruv][strlen($argn|aa)-2],35),_234156,$argn.=0);

在线尝试!

或使用Base 33数字

<?=strtr(_1.intval([a6n,sot,c8c,lba,vf1,vf2][strlen($argn|aa)-2],33),_134256,$argn.=0);

在线尝试!

PHP,89字节

<?=strtr(_1.[11111,21212,12233,42434,23455,23456][strlen($argn|aa)-2],_123456,$argn."0");

在线尝试!

intval(["8kn",gd8,"9ft",wqq,i3j,i3k][strlen($argn|aa)-2],36) + 36个基本字节的3个字节

PHP,102字节

<?=strtr("01".substr("11111111112121212233424342345523456",5*strlen($argn)-5,5),str_split($argn."0"));

在线尝试!

PHP,180字节

<?=[str_pad("#",7,($l=strlen($p=substr($argn,1)))?$p:0),"#$p[0]$p[0]$p[1]$p[1]$p[2]$p[2]","#$p[0]$p[3]$p[1]$p[3]$p[2]$p[3]","#$p[0]$p[1]$p[2]$p[3]$p[4]$p[4]",$argn][($l>2)*($l-2)];

在线尝试!


1
我将这个版本压缩为95个字节,但我认为它有所不同,因此我将其发布为自己的答案。希望您喜欢它:)
Christoph

2
@Christoph目前,我的版本在这里在线试用!
约尔格Hülsermann

2
Base 33是个很棒的主意!我坐在这里已经有一段时间了,但是没有想到。
克里斯多夫(Christoph)

1
@Christoph与您打我的第一个版本非常相似。这是不容易的高尔夫我的计算策略的方法下
约尔格Hülsermann

1
@Christoph感谢和底座35号系统是我在我们团队合作的方法
约尔格Hülsermann

2

视网膜,90字节

#(..)$
#$1$1$1
#(.)(.)(.)$
#$1$1$2$2$3
#(.)(.)(.(.))$
#$1$4$2$4$3
#$
#0
+`#.{0,4}(.)$
$&$1

在线尝试!包括测试用例。

说明:第一个转换处理两位数,第二个转换为三位数,第三个转换为四位数,第四个转换为零。但是,第二个和第四个翻译都不会重复(最后一个)数字,因为无论如何都要在结尾处覆盖所有剩余的情况。


2

Haskell中130 127 122 118 109 95字节(由user1472751

y a|l<-[last a]=[y"0",y$a++a,a++a++a,do c<-a;[c,c],(:l)=<<init a,a++l,a]!!length a
f(h:r)=h:y r

在线尝试!


后面有多余的空间g
Laikoni

1
(x:r)!(y:t)=x:y:r!t;e!_=e比短a!b=id=<<[[x,y]|(x,y)<-zip a b]
Laikoni

作为第一个字符,#您永远都可以做g(a:t)|l<-last t=a:[ ...
Laikoni

@Laikoni确实是那些很棒的改进!
bartavelle

我找到了一个95字节的解决方案,该解决方案使用了与您类似的方法(好主意也是如此,对吧?)。您可以使用它,也可以单独发布答案。
user1472751

2

Powershell,113111字节

param($s)-join($s+='0'*($s-eq'#'))[0,1+((,1*5),(2,1*2+2),(1,2,2,3,3),(4,2,4,3,4),(2..5+5),(2..6))[$s.Length-2]]

解释的测试脚本:

$f = {

param($s)           # parameter string
$s+='0'*($s-eq'#')  # append '0' if $s equal to '#'
$i=(                # get indexes from array
    (,1*5),         # $i = 1,1,1,1,1 if $s.length-2 = 0
    (2,1*2+2),      # $i = 2,1,2,1,2 if $s.length-2 = 1
    (1,2,2,3,3),    # $i = 1,2,2,3,3 if $s.length-2 = 2
    (4,2,4,3,4),    # $i = 4,2,4,3,4 if $s.length-2 = 3
    (2..5+5),       # $i = 2,3,4,5,5 if $s.length-2 = 4
    (2..6)          # $i = 2,3,4,5,6 if $s.length-2 = 5
)[$s.Length-2]
-join$s[0,1+$i]     # join chars from $s by indexes 0, 1 and $i


}

@(
    , ("#", "#000000")
    , ("#0", "#000000")
    , ("#4", "#444444")
    , ("#f", "#ffffff")
    , ("#a1", "#a1a1a1")
    , ("#0f", "#0f0f0f")
    , ("#99", "#999999")
    , ("#1a8", "#11aa88")
    , ("#223", "#222233")
    , ("#fff", "#ffffff")
    , ("#1230", "#102030")
    , ("#d767", "#d77767")
    , ("#bbb5", "#b5b5b5")
    , ("#aabbc", "#aabbcc")
    , ("#00000", "#000000")
    , ("#3764e", "#3764ee")
    , ("#3764ef", "#3764ef")
    , ("#123456", "#123456")
    , ("#f8f8f8", "#f8f8f8")
) |% {
    $s, $e = $_
    $r = &$f $s
    "$($e-eq$r): $r"
}

输出:

True: #000000
True: #000000
True: #444444
True: #ffffff
True: #a1a1a1
True: #0f0f0f
True: #999999
True: #11aa88
True: #222233
True: #ffffff
True: #102030
True: #d77767
True: #b5b5b5
True: #aabbcc
True: #000000
True: #3764ee
True: #3764ef
True: #123456
True: #f8f8f8

1

JavaScript(ES6),96个字节

s=>'#'+(c=[u,v,w,x,y,z]=s.slice(1)||'0',z?c:y?c+y:(x?u+x+v+x+w+x:w?u+u+v+v+w+w:c.repeat(v?3:6)))


1

Perl,61个字节

say+(/./g,0)[0,1,(unpack+S7,"g+g+ÜRÉ/Â¥[ [")[y/#//c]=~/./g]

用运行perl -nE。假定输入与描述完全相同(如果输入末尾有换行符,则会给出错误的结果)。

字符串“ g + g +ÜRÉ/Â¥[[”将7个16位数字编码11111,11111,21212,12233,42434,23455,23456为14个latin1字符。为了清楚起见,这是一个十六进制转储:

0000001d: 672b 672b dc52 c92f c2a5 9f5b a05b       g+g+.R./...[.[

我用对pack()的调用替换了Latin-1字符串,并得到:perl -nE 'say+(/./g,0)[0,1,(unpack+S7,pack "H*","672b672bdc52c92fc2a59f5ba05b")[y/#//c]=~/./g]'。但是,当我键入“ #a”时,我会得到“#a0a0a0”,我认为这是错误的。它应该是“ #aaaaaa”。(也许我在pack()调用中犯了一个错误。)
JL

这次,我用文字短裤替换了unpack()和pack()调用,并得到:perl -nE 'say+(/./g,0)[0,1,(11111,11111,21212,12233,42434,23455,23456)[y/#//c]=~/./g]'。仍然似乎是错误的,因为“ #a”仍然会产生“#a0a0a0”(而不是“ #aaaaaa”)的错误答案。
JL

啊! 我想到了!我需要将-l开关(如“字母L”中的“ ell”)与-nE开关一起使用,如下所示: perl -lnE 'say+(/./g,0)[0,1,(11111,11111,21212,12233,42434,23455,23456)[y/#//c]=~/./g]'。现在它可以正常工作了。
JL

可以通过将“运行方式为perl -nE” 更改为“运行方式”来消除显示“(如果输入的末尾有换行符,则给出错误的结果)”的警告perl -lnE。(-l交换机的部分将为您摆脱尾随的换行符。)
JL

-F在命令行上使用,可以将其更改为say+(@F,0)[0,1,(unpack+S7,"g+g+ÜRÉ/Â¥[ [")[$#F]=~/./g]在代码中节省5个字节。
Xcali

1

Windows批处理,389372362349231字节

我完全复制了@Neil代码...

@call:c %s:~1,1% %s:~2,1% %s:~3,1% %s:~4,1% %s:~5,1% %s:~6,1%
@exit/b
:c
@for %%r in (#%1%2%3%4%5%6.%6 #%1%2%3%4%5%5.%5 #%1%4%2%4%3%4.%4 %s%%1%2%3.%3 
%s%%1%2%1%2.%2 %s%%1%1%1%1%1.%1 #000000.0)do @if not %%~xr.==. @echo %%~nr&exit/b

1
将%s%替换为%1应该可以节省一些字节。
satibel

2
%s:~3,1%%s:~4,1%可以替换为%s:~3,2%。另外,我不确定这是否适用于的输入#
尼尔

2
顺便说一句,我尝试了一种不同的算法,结果是243个字节。
尼尔

1
我可以知道算法是什么吗?
stevefestl

1
(对不起,由于缺少@Neil,我没有看到您的评论。)虽然有些重复,但感兴趣的两行是call:c %s:~1,1% %s:~2,1% %s:~3,1% %s:~4,1% %s:~5,1% %s:~6,1%for %%r in (#%1%2%3%4%5%6.%6 #%1%2%3%4%5%5.%5 #%1%4%2%4%3%4.%4 %s%%1%2%3.%3 %s%%1%2%1%2.%2 %s%%1%1%1%1%1.%1 #000000.0)do if not %%~xr.==. echo %%~nr&exit/b
尼尔

1

Pyth,35个字节

+\#@<R6[J|tQ\0K*6JKKs*R2JjeJJ+JeJ)l

在线试用这里,或验证所有测试用例在这里

+\#@<R6[J|tQ\0K*6JKKs*R2JjeJJ+JeJ)lQ   Implicit: Q=eval(input())
                                       Trailing Q inferred
          tQ                           Remove first char of input
         |  \0                         The above, or "0" if empty
        J                             *Store in J (also yields stored value)
              K*6J                    *Repeat J 6 times, store in K
                  KK                  *2 more copies of the above
                    s*R2J             *Duplicate each char of J in place
                         jeJJ         *Join chars of J on last char of J
                             +JeJ     *Append last char of J to J
       [                         )     Wrap the 5 starred results in an array
    <R6                                Trim each to length 6
   @                              lQ   Choose result at index of length of input
                                       (Modular indexing, so length 7 selects 0th element)
+\#                                    Prepend #, implicit print

1

Python 2,99个字节

def a(s):s=s[1:]or'0';l=len(s);print('#'+(l/4*s[-1]).join(i+i*(l==3)for i in(l<5)*6*s)+s+s[-1])[:7]

在线尝试!


不错的第一篇文章。顺便说一句,在线尝试!是一个可选但推荐的网站,该网站运行要包含在您的答案中的代码。它可以生成CG&CC帖子,并提供准确的字节数来引导。
Veskah

非常酷,谢谢!
吉特

0

Python 2-179字节

n=raw_input()                                #prompts for string
t=len(n)                                     #the length of the string is stored to 't'
if t==1:n+="0"*6                             #if t is only one char long, it needs to be black, so n is assigned 6 zeroes
if t==2:n+=n[1]*5                            #if t is two chars long, it adds the last character times 5 at the end
if t==3:n+=n[1:3]*2                          #if t is 3 chars, it multiplies the last two digits times 3
if t==4:n="#"+n[1]*2+n[2]*2+n[3]*2           #if t is 4 chars, it multiplies each char by two
if t==5:n=n[:2]+n[4]+n[2]+n[4]+n[3]+n[4]     #if t is 5 chars, it makes it work
if t==6:n+=n[t-1]                            #if t is 6 chars, it adds the last character to the end
print n                                      #it prints out n

谁能帮我节省一些字节?所有的if语句似乎都可以缩短为更短的内容,我只是不知道是什么。


1
尝试将每个片段放在列表中并建立索引。另外,切换到Python 3很有可能会节省字节,list[len(list)-x]并且与相同list[-x]
CalculatorFeline

如果你想挤出一些字节,考虑转换if t==1:if t<2:(和if t==2:if t<3:等)。可以肯定的是,它的可读性较差,但是可以编码更多!
JL

0

TXR Lisp:171个字节

缩进:

(do let ((s (cdr @1)))
  (caseql (length s)
    (0 "#000000") 
    (1 `#@s@s@s@s@s@s`)
    (2 `#@s@s@s`)
    (3 `#@[mappend list s s]`)
    (4 `#@[s 0]@[s 3]@[s 1]@[s 3]@[s 2]@[s 3]`)
    (5 `#@s@[s 4]`)
    (6 `#@s`))))

这是一个匿名函数:do宏生成一个(lambda ...)表单。

它是惯用的编码样式,适合生产;唯一的高尔夫运动是挤压空格:

(do let((s(cdr @1)))(caseql(length s)(0"#000000")(1`#@s@s@s@s@s@s`)(2`#@s@s@s`)(3`#@[mappend list s s]`)(4`#@[s 0]@[s 3]@[s 1]@[s 3]@[s 2]@[s 3]`)(5`#@s@[s 4]`)(6`#@s`))))

0

Braingolf,95个字节

l1-.1e$_!&@4>[!@]|.2e$_!&@!@2!@2|.3e$_<@V2[R<!@!@v]|.4e$_<@VRM&,2>[@v!@R]|.5e$_<@!&@@|.6e$_&@|;

在线尝试!

实际上,这相当于Braingolf等效#于输入后的字符数量的转换大小写。

说明

总是可以运行的东西:

l1-.1  Implicit input to stack
l      Push length of stack
 1-    Decrement last item in stack
   .   Duplicate last item in stack
    1  Push 1

如果#X

e$_!&@4>[!@]|
e              If last 2 items (input length - 1 and 1) are equal..
 $_            ..Pop last item silently
   !&@         ..Print entire stack as chars without popping
      4>       ..Push 4 and move it to start of stack
        [..]   ..While loop, decrements first item in stack when it reaches ]
               ..If first item in stack is 0 when reaching ], exit loop
               ..This loop will run 5 times
         !@    ....Print last char without popping
            |  endif

如果 #XX

这可能有点打高尔夫球,回家后我可能会看一下

.2e$_!&@!@2!@2|
.2               Duplicate last item and push 2
  e              If last 2 items (input length - 1 and 2) are equal..
   $_            ..Pop last item silently
     !&@         ..Print entire stack as chars without popping
        !@2      ..Print last 2 items as chars without popping
           !@2   ..Print last 2 items as chars without popping
              |  Endif

如果 #XXX

.3e$_<@V2[R<!@!@v]|
.3                   Duplicate last item and push 3
  e                  If last 2 items (input length - 1 and 3) are equal..
   $_                ..Pop last item silently
     <@              ..Move first item in stack to the end, then pop and print
       V2            ..Create new stack and push 2 to it
         [.......]   ..While loop, see above for explanation
          R<         ....Switch to stack1 and move first item to end of stack
            !@!@     ....Print last item on stack twice without popping
                v    ....Move to stack2 for loop counting
                  |  Endif

你明白了


0

红宝石,127字节

c=~/#(.)?(.)?(.)?(.)?(.)?(.)?/
$6?c:'#'+($5?$1+$2+$3+$4+$5*2:$4?$1+$4+$2+$4+$3+$4:$3?$1*2+$2*2+$3*2:$2?($1+$2)*3:$1?$1*6:"0"*6)

在线尝试!


0

红宝石,118字节

def f c
c.sub!'#',''
s=c.size
t=c[3]
s>5?'#'+c:f(s<1?'0':s<2?c*6:s<3?c*3:s<4?c*2:s<5?c[0]+t+c[1]+t+c[2]+t:c+c[-1])
end

在线尝试!


0

05AB1E,24 字节

ćU©0®Ð€D®S¤ý®¤«)JIgè6∍Xì

在线尝试验证所有测试用例

说明:

ć           # Extract the head of the (implicit) input-string;
            # pop and push remainder and head
 U          # Pop and store the head in variable `X`
  ©         # Store the remainder in variable `®` (without popping)
  0         # Push a 0
  ®Ð        # Push `®` three times
    D      # Duplicate each character in the last copy (which becomes a character-list)
  ®S        # Push variable `®` again, converted to a character-list
    ¤       # Get its last character (without popping the list itself)
     ý      # Join the list by this character
  ®         # Push variable `®` once again
   ¤        # Get its last character (without popping the string itself)
    «       # Append it to the string
  )         # Wrap all values into a list
   J        # Join the inner list from `€D` together to a list,
            # or in case of input `#`, join everything together to string "0"
            #  i.e. "#" → (["","0","","","",""] → ) "0"
            #  i.e. "#4" → ["4","0","4","4","44","4","44"]
            #  i.e. "#a1" → ["a1","0","a1","a1","aa11","a11","a11"]
            #  i.e. "#1a8" → ["1a8","0","1a8","1a8","11aa88","18a88","1a88"]
            #  i.e. "#abcd" → ["abcd","0","abcd","abcd","aabbccdd","adbdcdd","abcdd"]
            #  i.e. "#3764e" → ["3764e","0","3764e","3764e","33776644ee","3e7e6e4ee","3764ee"]
            #  i.e. #123456 → ["123456","0","123456","123456","112233445566","16263646566","1234566"]
    Ig      # Push the length of the input
      è     # Index (0-based) this into the list (with automatic wraparound for length=7)
       6   # Extend/shorten the string to length 6
         Xì # And prepend variable `X` (the "#")
            # (after which the result is output implicitly)
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.