转换AWG到英寸


9

AWG(美国线规)是指定电线尺寸的常用方法。在此挑战中,您的任务是将给定的线规转换为以英寸为单位的导线直径。

下表显示了从4/0到的量规的英寸大小40

英寸表

| AWG | Diameter (Inches) |
|-----|-------------------|
| 4/0 | 0.46              |
| 3/0 | 0.4096            |
| 2/0 | 0.3648            |
| 1/0 | 0.3249            |
| 1   | 0.2893            |
| 2   | 0.2576            |
| 3   | 0.2294            |
| 4   | 0.2043            |
| 5   | 0.1819            |
| 6   | 0.162             |
| 7   | 0.1443            |
| 8   | 0.1285            |
| 9   | 0.1144            |
| 10  | 0.1019            |
| 11  | 0.0907            |
| 12  | 0.0808            |
| 13  | 0.072             |
| 14  | 0.0641            |
| 15  | 0.0571            |
| 16  | 0.0508            |
| 17  | 0.0453            |
| 18  | 0.0403            |
| 19  | 0.0359            |
| 20  | 0.032             |
| 21  | 0.0285            |
| 22  | 0.0253            |
| 23  | 0.0226            |
| 24  | 0.0201            |
| 25  | 0.0179            |
| 26  | 0.0159            |
| 27  | 0.0142            |
| 28  | 0.0126            |
| 29  | 0.0113            |
| 30  | 0.01              |
| 31  | 0.00893           |
| 32  | 0.00795           |
| 33  | 0.00708           |
| 34  | 0.0063            |
| 35  | 0.00561           |
| 36  | 0.005             |
| 37  | 0.00445           |
| 38  | 0.00397           |
| 39  | 0.00353           |
| 40  | 0.00314           |

澄清说明

  • 对于小于的仪表0,您可以将输入作为3/0000
  • 你只需要支持从给定的4/040
  • 维基百科页面提供了一些有用的公式,你可以尝试使用,如果你不想硬编码的一切
  • 将您的答案输出到至少3个签名
  • 这个 ,因此以字节为单位的最短代码胜出!

24
美国人为避免使用公制而能做的事情真是太神奇了:-P
Luis Mendo

2
这不是kolmogorov复杂性,因为它是对输出的转换,而不是恒定的输出
fəˈnɛtɪk

我们可以将输入作为数组吗?0000作为[0, 0, 0, 0]40作为[40]
英里

Answers:


3

JavaScript(ES7),36个字节

s=>.46/92**(((+s||1-s.length)+3)/39)

接受“ 0000”格式的输入。


3

J33 26字节

0.46%92^39%~*@".{3+".,~1-#

在线尝试!

将输入作为量规小于零的字符串作为零字符串。找到该字符串的索引,然后将0.46(的直径0000)除以92的第39个根(标距之间的比率)多次。

说明

0.46%92^39%~*@".{3+".,~1-#  Input: string S
                         #  Length of S
                       1-   Subtract it from 1
                   ".,~     Eval S and append it, forms [1-len(S), eval(S)]
                 3+         Add 3 to each
            *@".            Sign of the eval
                {           Use that to index into the previous list
        39%~                Divide by 39
     92^                    Raise 92 to that power
0.46%                       Divide 0.46 by that and return

1

Bash + GNU utils,47岁

bc -l<<<"e(l(92)*(36-(${1/\/0/*-1+1}))/39)/200"

用AHP进行简单算术表达式求值bc。输入作为命令行参数给出。

小于0的量规为n/0。bash参数扩展${1/\/0/*-1+1}将这些转换为-ve并添加一个使运算正确的数字。

bc -l默认给出20位小数。 bc的幂运算符^只能处理整数指数,因此ln(y*e(x))改用它。

在线尝试


也许提到输出值缺少前导零或自己添加?附带说明一下,尽管有更多字节,也有可能直接在bc脚本中解决此问题。
seshoumara

1

果冻,18 字节

VoLC$+3÷39µ92*.46÷

在线尝试!

一个单调链接,该曲调将返回一个数字。这些'0...0'案例产生了一些额外的输出,但是返回值是正确的,这可以通过忽略此处的前两行看到

怎么样?

VoLC$+3÷39µ92*.46÷ - Main link: guageString
V                  - evaluate as Jelly code (a string of zeros evaluates to 0)
    $              - last two links as a monad
  L                -     length
   C               -     complement (1-length)
 o                 - Or (integer value for > 0, 1-lenght for strings of zeros)
     +3            - add 3
       ÷39         - divide by 39
          µ        - monadic chain separation (call the result p)
              .46÷ - 0.46 divided by
           92*     - 92 raised to the power of p


0

05AB1E25 23字节

8Ø50/92ID1‹ig(>}3+39/m/

在线尝试!

说明

8Ø                       # push the 8th prime (0-indexed) = 23
  50/                    # divide by 50 = 0.46
     92                  # push 92
       I                 # push input
        D1‹i   }         # if input < 1
            g(>          # calculate -len(input)+1
                3+       # add 3
                  39/    # divide by 39
                     m   # raise 92 to this power
                      /  # divide 0.46 by this

0

Excel,53 49字节

=92^((36-IF(ISNUMBER(A1),A1,49-CODE(A1)))/39)/200

将小于零的量规作为字符串(1 / 0、2 / 0等)


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.