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

American Soundex

A challenge by mousetail avatar mousetail

Description

For each line of the input, print it’s American Soundex. Soundex is an algorithm invented by Robert C. Russell and Margaret King Odell to try to find words that sound similar when spoken in a typical American accent. It’s not very good at it’s task but should be an interesting algorithm to golf.

The american soundex is computed as follows, quoted from Wikipedia:

  • Save the first letter. Map all occurrences of a, e, i, o, u, y, h, w. to zero(0)
  • Replace all consonants (include the first letter) with digits as in below:
    • b, f, p, v → 1
    • c, g, j, k, q, s, x, z → 2
    • d, t → 3
    • l → 4
    • m, n → 5
    • r → 6
  • Replace all adjacent same digits with one digit, and then remove all the zero (0) digits
  • If the saved letter’s digit is the same as the resulting first digit, remove the digit (keep the letter).

Normally, there is a padding and truncation step but we’ll skip it for this challenge, so the output may come out to be any length.

All words will consist only of ASCII letters, there will be no spaces or other punctuation.

Please suggest more test cases in the Discord.

Leaderboard

Author Score
#1 AlephSquirrel avatar AlephSquirrel 116
#2 Bulmenisaurus avatar Bulmenisaurus 120
#3 hallvabo avatar hallvabo 129
#4 mousetail avatar mousetail 226
JavaScript (Deno) JavaScript (NodeJS) Python Rust C (tcc) APL (TinyAPL) Vyxal Vyxal 3
You must be logged in to submit a solution.