修剪并计算小数


11

在此挑战中,您将编写一个程序来输出输入字符串中的小数位数,并在需要时修剪输入。

例子

-12.32
2

32
0

3231.432
3

-34.0
0 -34

023
0 23

00324.230
2 324.23

10
0

00.3
1 0.3

0
0

-04.8330
3 -4.833

规则

  • 输入将是一个字符串,可以通过STDIN,函数参数或最接近的等效项来获取
  • 输出可以通过函数返回,STDOUT或最接近的等效项进行。
  • 除了您的语言的最大字符串长度外,输入整数的大小没有限制
  • 如果输入中有任何不必要的零(前导或尾随零):
    1. 你应该把它们拿出来
    2. 输出新数字的小数位数
    3. 输出由分隔符分隔的新数字(例如,空格,换行符,逗号)
  • 输入将始终与此RegEx:匹配-?\d+(\.\d+)?,或者如果您不讲RegEx
    • 可能-在开始暗示负数。然后至少会有一位数字。然后可能会有... .和更多数字。
    • 要检查输入是否有效,请在此处检查
  • 没有正则表达式

这是因此以字节为单位的最短代码获胜


也许添加一个带有负号和前导零的测试用例?
路易斯·门多

是否允许输出最终号码,而不管是否修剪?
insertusername此处,2016年

1
@insertusername此处否,如果修剪过,则只能输出第二个数字
Downgoat

1
您可能要为单个添加测试用例/示例0
insertusername此处,2016年

3
-1为无意义的正则表达式限制。
Conor O'Brien

Answers:


0

PHP 7,142字节

我以某种方式设法将所有内容压缩到一个打印语句中:

<?=strlen((explode('.',$t=trim('-'==($_=$argv[1])[0]?$n=$_=trim($_,'-'):$_,0)))[1]).($t!==$_?($n?' -':' ').('.'==$t[0]?0:'').trim($t,'.'):'');

从命令行运行,例如:

$ php trimandcount.php "-04833.010"

演示版

查看所有测试用例,包括一个非常长的测试用例(62个字符):

买前先试1

1将鼠标悬停在“ 7.0.0输出 ” 下面的框上以查看所有结果。


4

Python 2,165180字节

最初,我正在考虑编写我的第一个Pyth程序,让它计算出潜在逗号后的位数。但是后来我很生气,我不知道你怎么喜欢这种语言,想必这只是为了赢钱。无论如何,这是我的解决方案(已编辑,因为它不适用于大量工作):

def t(i):
 o,a='',i
 while a[-1]=='0':
  a=a[:-1]
 while a[0]=='0':
  a=a[1:]
 if a[-1]=='.':a=a[:-1]
 if'.'in a:o=str(len(a)-a.index('.')-1)
 else:o='0'
 if a!=i:o+=" "+a
 print o

如果有人想在我的Pyth上继续工作,请执行以下操作:~b@+cz"."" "1Wq@b_1"0"~b<b_1)plrb6要查看您的位置,可能需要在之间插入ap @+


2

05AB1E,23字节(非竞争性)

该死,我好近。Python使用科学计数法解析非常大的浮点数,因此我在解释器中修复了该错误。但是,这是挑战之后完成的,因此我的提交没有竞争力。

码:

DÞ'.¡0Üg,\DÞ0Ü'.ÜDrQ_i,

说明:

D                       # Duplicate top of the stack, or input when empty
 Þ                      # Convert to float
  '.¡                   # Split on '.' (decimal point)
     0Ü                 # Remove trailing zeroes
       g                # Get the length
        ,               # Output top of the stack (the length)
         \              # Discard the top item
          D             # Duplicate top of the stack
           Þ            # Convert to float
            0Ü          # Remove trailing zeroes
              '.Ü       # Remove trailing dots
                 D      # Duplicate top of the stack
                  r     # Reverse the stack
                   Q_i, # If not equal, print top of the stack

使用ISO 8859-1编码


2

的JavaScript(ES6),156 162

编辑修复了'-0'的错误-thx @Fez Vrasta 编辑2 6个字节保存了thx @Neil

这是一团糟,但它是基于100%的字符串-由于数字类型而没有限制

s=>(l=k=p=t=0,[...s].map(c=>++t&&c=='.'?p=t:+c&&(l=t,k=k||t)),m=p>l?p-1:p?l:t,k=k>p&&p?p-2:k-1,r=(s<'0'?'-':'')+s.slice(k,m),(p&&m>p?m-p:0)+(r!=s?' '+r:''))

少打高尔夫球

f=s=>
(
  // All values are position base 1, so that 0 means 'missing'
  // k position of first nonzero digit
  // l position of last non zero digit
  // p position of decimal point
  // t string length
  l=k=p=t=0,
  // Analyze input string
  [...s].map((c,i)=>c=>++t&&c=='.'?p=t:+c&&(l=t,k=k||t)),
  // m position of last digits in output
  // if the point is after the last nz digit, must keep the digits up to before the point
  // else if point found, keep  up to l, else it's a integer: keep all
  m=p>l?p-1:p?l:t,
  // the start is the first nonzero digit for an integer
  // but if there is a point must be at least 1 char before the point
  k=k>p&&p?p-2:k-1,
  // almost found result : original string from k to m
  r=(s<'0'?'-':'')+s.slice(k,m), // but eventually prepend a minus
  (p&&m>p?m-p:0) // number of decimal digits
  +(r!=s?' '+r:'') // append the result if it's different from input
)

测试

F=s=>(l=k=p=t=0,[...s].map(c=>++t&&c=='.'?p=t:+c&&(l=t,k=k||t)),m=p>l?p-1:p?l:t,k=k>p&&p?p-2:k-1,r=(s<'0'?'-':'')+s.slice(k,m),(p&&m>p?m-p:0)+(r!=s?' '+r:''))

console.log=x=>O.textContent+=x+'\n';
// Test cases  
;[['-12.32','2'],['32','0'],['3231.432','3'],['-34.0','0 -34']
 ,['023','0 23'],['00324.230','2 324.23'],['10','0'],['00.3','1 0.3']
 ,['0','0'],['-0','0'],['-04.8330','3 -4.833']]
.forEach(t=>{
  var i=t[0],k=t[1],r=F(i);
  console.log((k==r?'OK ':'KO ')+i+' -> '+r)})

function test(){var i=I.value,r=F(i);R.textContent=r;}
test()
input { width:90% }
input,span { font-family: sans-serif; font-size:14px }
Input: <input id=I oninput='test()' value='-000000098765432112345.67898765432100000'>
Output: <span id=R></span><br>
Test cases<br>
<pre id=O></pre>


似乎我和您的答案-0在输入时都有问题..我们应该输出0,而不是0 0
Fez Vrasta 2016年

是的,感谢您指出
edc65 '16

@FezVrasta固定
edc65 '16

c=='.'?p=t:+c&&(l=t,k=k||t)工作,你救一个字节?
尼尔

我想你可能能够使用以节省一些t=l=k=p=0++t&&c=='.'
尼尔

1

ES6,102个 180 177字节

s=>(t=s.replace(/(-?)0*(\d+(.\d*[1-9])?).*/,"$1$2"),d=t.length,d-=1+t.indexOf('.')||d,t!=s?d+' '+t:d)

s=>{t=[...s];for(m=t[0]<'0';t[+m]==0&&t[m+1]>'.';)t[m++]='';r=l=t.length;for(r-=1+t.indexOf('.')||l;t[--l]<1&&r;r--)t[l]='';t[l]<'0'?t[l]='':0;t=t.join``;return t!=s?r+' '+t:r}

编辑:由于@ edc65,节省了3个字节;由于在此插入了用户名,因此节省了1个字节。


尝试传播而不是拆分t=[...s]
edc65 '16

@ edc65我花了很长时间尝试将其改写后再打下来,然后您发现一刹那就节省了3个字节……
Neil

我认为您可以节省1个字节:替换t[--l]==0t[--l]<1
insertusername此处

@insertusernamehere谢谢!
Neil

0

C ++,180个字节

int f(char*s,char*&p){int m=*s=='-',n=0;for(p=s+m;*p=='0';++p);for(;*++s-'.'&&*s;);p-=p==s;if(*s){for(;*++s;)++n;for(;*--s=='0';--n)*s=0;*s*=n>0;}if(m&&*p-'0'|n)*--p='-';return n;}

这是可移植的C ++,不假定字符编码,也不包含任何库(甚至不包括标准库)。

输入传入s。返回小数位数;字符串就地修改,并在中返回新的开始p

根据权利,我应该返回a size_t,但是我将声明您应该针对将字符串大小限制为的一半的OS进行编译int。我认为这是合理的;在32位架构上,它的位数超过20亿小数。

说明

int f(char*s, char*&p){
    int m=*s=='-', n=0;
    for(p=s+m;*p=='0';++p);     // trim leading zeros
    for(;*++s-'.'&&*s;);        // advance to decimal point
    p-=p==s;                    // back up if all zeros before point
    if(*s){
        for(;*++s;)++n;          // count decimal places
        for(;*--s=='0';--n)*s=0; // back up and null out trailing zeros
        *s*=n>0;                 // don't end with a decimal point
    }
    if(m&&*p-'0'|n)*--p='-';    // reinstate negative sign
    return n;
}

测试程序

#include <cstring>
#include <cstdio>
int main(int argc, char **argv)
{
    for (int i = 1;  i < argc;  ++i) {
        char buf[200];
        strcpy(buf, argv[i]);
        char *s;
        int n = f(buf, s);
        printf("%10s ==> %-10s (%d dp)\n", argv[i], s, n);
    }
}

测试输出

    -12.32 ==> -12.32     (2 dp)
        32 ==> 32         (0 dp)
  3231.432 ==> 3231.432   (3 dp)
     -34.0 ==> -34        (0 dp)
       023 ==> 23         (0 dp)
 00324.230 ==> 324.23     (2 dp)
        10 ==> 10         (0 dp)
      00.3 ==> 0.3        (1 dp)
  -04.8330 ==> -4.833     (3 dp)
    -00.00 ==> 0          (0 dp)
       -00 ==> 0          (0 dp)
       000 ==> 0          (0 dp)
      0.00 ==> 0          (0 dp)
      -0.3 ==> -0.3       (1 dp)
         5 ==> 5          (0 dp)
        -5 ==> -5         (0 dp)
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.