Byte Heist Home Leaderboard
Join the Heist (with Github)
Solve View

Sorta Sorted Strings

For each line in the input, output its Sorta Sorted Score.

The Sorta Sorted Score of a string is the sum of the costs of its bytes according to these rules:

Your score on this challenge, instead of being the raw byte length of your source code, will be the Sorta Sorted Score of your source code.

In order to make this scoring scheme work, please calculate your Sorta Sorted Score and pad your solution with an appropriate amount of spaces to give yourself that score. For example, if your source is abdcdd, append 58 spaces: 49 spaces for the “c” plus 9 spaces for the last “d”.

NOTE: Input lines will consist entirely of printable ASCII.

Judge

(async function*(context: Context): Challenge {
    const trimmedCode = context.code.replace(/ *$/, ''),
        sortaSortedScore = function(str: String): Number {
            let score = 0,
                prevByte = -1;
            for (let byte of new TextEncoder().encode(str)) {
                score += byte > prevByte ? 1 : byte < prevByte ? 50 : 10;
                prevByte = byte;
            }
            return score;
        },
        expectedScore = sortaSortedScore(trimmedCode),
        actualScore = new TextEncoder().encode(context.code).length;
    yield context.registerTestCase(new TestCase("Correctly scored", expectedScore === actualScore ? "Pass" : "Fail", {
        "Diff": {
            "expected": expectedScore + " bytes",
            "output": actualScore + " bytes"
        }
    }));
    const testCases =
        yield* context.runTestCases(
            ["abdcdd", "Hello, World!", " !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~",
                "~}|{zyxwvutsrqponmlkjihgfedcba`_^]\\[ZYXWVUTSRQPONMLKJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$#\"! ", "c%{3/xIIRx2[gS:ob$Rm;1 VNP)t#@@q+;RF }83-li1mG8jSi", "/]'>&n|Viz|/h0XO2ULl9{LQEmGTfkDkDafa3C1[BohyR8* i ]Ii#KD4rw`r'XQa`djK6", "0001111220120011220011234567789989112233445566", "!!!!!!!!!!!!!!!!", "(6GZ(((T0g;!9y)@>bfTl!bCac4H<\\k eh", "t?:A:[~w26 %?l11r/Pa~|G6<IBxO14{b7L=h,pZt;.t", "Ac2(R+Al!Gg`Dz7J!nI#2e)jks3mY\"nt", "N]|1<Am5xxiYY5&VhEFgAe:wx", "!oQ/ 7@o!Xr;KF/^G|]f0jJQ_`XCUV16-$?a0]lT", "18EB>31wcnlVq)q#DmcN}!qkz= BL;wh8c-wZC", "_pg)Tzk$YT{x$n0 O97u:6}\\/`9631/l$0G/5Pe$", "vP5nL@G!UbJNN+zI_RxMW[[7]O", "@IcnjTW4J2p#pz}fO6/5)|#],+k", "8=JF;B=YB]r\\YO7EEH1c@p'S&;S}q;/&#'#&R%J{f8", "W@0tB0f'!T8l}L=8Ne)-+", "-LuQ0y\\xRh{I!hKE*%4]=OI{bq'y( 11,TPWk`", "YNtp&/_F|oxTf.j`\"!7mj>)MtWN'b", "#SDEL3cd7hBZV\\9,n]7<oin|o474bh>}Q0,P8feSWB^ *Z~U=a`(F^tBoNsd9WS0k1{MH6{=gMx", "zS|EV!IhfZV7b8+AQ[4G=4+!-V_nKCl)$XF|W$<M", ",QUQu]\\5i%.7!\"ovu<$di6n*#ttpj57C2X3uOgIv=\\Em", " .tA)(o#xq2eCHx\"'J3%Y3X;F8upmYr 52[cNCSAnVSQ*fW#i0", "w:L@]a}}t(3sh<bsq", "-xjah0$&N8vR\"Q)#?EFM", "BWw'UdGSEF@1k]'HTIV~g(Qp}s~~.2Udfjneq@;>VBU~GF11=;DmUJo|k", ";tKZcDNXP`bwnw(OZWFI,bWPfSBG5^qz*`{A=f9lEvxor; YU&h:r'U~a3~WoN)A*7A.P}=ZkmJf9-Br}", "l+gqa/_q%u1HBnA'sz~Dx8.:_\"lh\\", "J,,PRBy[!6qC~\\q?KDzn$9am=^TPXy)q3P3'y)E5z8ho|z=,87B5O#fQmc4HS{M>LZ]#ZtXsWYd", "wfh&tf?:i-jF)FG G!(3-yNmFZcV;$p#3N?^^Ql[o8)=c7[sd1/&w$\\c mg\"H~LFa!.]8h*aY'", "&Ge\";+UeoYiX&}S9h#J=5Tk~g!h(s1;y)av;", "_iZLLLLMMpD)", "#T>C#7r~#q:D", "@okHiQ<HlDfv50es,[`vCob(FP>SO\\95HduM+O@/8:q[", "M]k pmpS-~B*=ME;[", "S;R.aabbaabbbaaabbb)|.~pjh.2J6", "j;>u'AfLXDZ&9'S.!^3c4ia?T~eXcsT/>pdeg[# xl@SgaG+!n)\"jG^ieNZ.S)\"De'T%UE-BF*f", "=~ynL]3B~<iJCU9q#PZ),$N.`nuNC9dC[n7'J=/7-9\\c1LXEaUfK|c,#3UhQ1r", "ud?C<~VwkqM.4!6w4:kI\"AjLeOOMUbi=,w", "  "
            ].map(s => [s, "" + sortaSortedScore(s)])
        );
    return context.noFailures();
})

Example Code

const sortaSortedScore = function(str) {
    let score = 0,
        prevByte = -1;
    for (let byte of new TextEncoder().encode(str)) {
        score += byte > prevByte ? 1 : byte < prevByte ? 50 : 10;
        prevByte = byte;
    }
    return score;
};

var fs = require("fs");
var stdinBuffer = fs.readFileSync(0); // STDIN_FILENO = 0
console.log(stdinBuffer.toString().split("\n").map(sortaSortedScore).join("\n"));