Created
July 10, 2024 10:13
-
-
Save robinpokorny/795f9e92f1d48e20acde3f985dfe47f8 to your computer and use it in GitHub Desktop.
Count repeated emojis (badges) with subscript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const subscriptNumber = (n) => n | |
.toString(10) | |
.split`` | |
.map((i) => Number.parseInt(i, 10)) | |
.map((i) => String.fromCharCode(0x2080 + i)) | |
.join`` | |
const countBadges = (badges) => Array | |
.from( | |
[...new Intl.Segmenter().segment(badges)] | |
.map((x) => x.segment) | |
.reduce( | |
(freq, badge) => freq.set(badge, (freq.get(badge) ?? 0) + 1), | |
new Map(), | |
) | |
).flatMap( | |
([badge, count]) => [badge, count === 1 ? `` : subscriptNumber(count)] | |
) | |
.join`` | |
countBadges(`π₯·π₯·π₯·π¨π¨π¨π¨π¨π¨π€π§βπ§βπ§βπ§π§βπ§βπ§βπ§π¨π¨π¨π¨π¨π¨`) | |
// -> `π₯·βπ¨ββπ€π§βπ§βπ§βπ§β` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment