q / kdb +, 55 바이트
해결책:
"#",raze{(last($)0x0 vs)each"h"$.0255*x[3]*x 0 1 2}100-
예 :
q)"#",raze{(last($)0x0 vs)each"h"$.0255*x[3]*x 0 1 2}100-86 86 0 43
"#141491"
q)"#",raze{(last($)0x0 vs)each"h"$.0255*x[3]*x 0 1 2}100-28 14 0 6
"#adcef0"
q)"#",raze{(last($)0x0 vs)each"h"$.0255*x[3]*x 0 1 2}100-0 41 73 4
"#f59042"
설명:
아주 간단하게 0.0255
다른 솔루션 의 트릭을 훔쳤습니다 (감사합니다!). 평가는 오른쪽에서 왼쪽으로 수행됩니다.
"#",raze {(last string 0x0 vs) each "h"$ .0255 * a[3] * a 0 1 2}100- / ungolfed
{ } / lambda function
100- / subtract from 100 (vector)
a 0 1 2 / index into a at 0, 1 and 2 (CMY)
a[3] / index into at at 3 (K)
* / multiply together
.0255 * / multiply by 0.255
"h"$ / cast to shorts
( ) each / perform stuff in brackets on each list item
0x0 vs / converts to hex, 1 -> 0x0001
string / cast to string, 0x0001 -> ["00", "01"]
last / take the last one, "01"
raze / join strings together
"#", / prepend the hash
노트:
기본적으로 숫자를 반올림합니다 (_)
. 단시간에 캐스팅하기 전에 대신 3 바이트가 필요 합니다.
CMYK
에서 소수점으로 값을0
에1
있거나 할 필요0
에100
?