Given a string, compress substrings of repeated characters in to a format similar to aaa -> a3

For example for the string aaabbhhhh33aaa the expected output would be a3b2h432a3


You must accept the input as a command line argument (entered when your app is ran) and print out the result

(It will be called like node main.js aaaaa or however else to run apps in your language)

You can use the solution tester in this post to test you followed the correct format https://programming.dev/post/1805174

Any programming language may be used. 1 point will be given if you pass all the test cases with 1 bonus point going to whoevers performs the quickest and 1 for whoever can get the least amount of characters

To submit put the code and the language you used below


People who have completed the challenge:

  • @Andy
    link
    2
    edit-2
    10 months ago

    Factor:


    USING: kernel strings command-line namespaces math.parser sequences io ;
    IN: l
    
    : c ( s -- C )
      "" swap
      [ dup empty? not ] [
        dup dup dup first '[ _ = not ] find drop
        dup not [ drop length ] [ nip ] if
        2dup tail
        [ number>string [ first 1string ] dip append append ] dip
      ] while drop
    ;
    
    MAIN: [ command-line get first c print ]
    

    Benchmark using compiled binary:

    $ hyperfine "./compress/compress aaabbhhhh33aaa"
    
    Benchmark 1: ./compress/compress aaabbhhhh33aaa
      Time (mean ± σ):       3.6 ms ±   0.4 ms    [User: 1.4 ms, System: 2.2 ms]
      Range (min … max):     3.0 ms …   6.0 ms    575 runs
    
    • AtegonOPMA
      link
      1
      edit-2
      10 months ago
      • 8/8 test cases passed
      • Time taken: 0.163 seconds
      • Characters: 359

      I ran it using factor.com -run (path to file)

      If theres a better way let me know, first time using factor