feat: 192_word_frequency

This commit is contained in:
SquidSpirit 2025-08-18 11:25:26 +08:00
parent b1d019a05d
commit c9528fc389

View File

@ -0,0 +1 @@
cat words.txt | tr -s '[:space:]' '\n' | sort | uniq -c | sort -nr | awk '{print $2, $1}'