We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1df89 commit 637dab0Copy full SHA for 637dab0
src/solutions/s0192_word_frequency.sh
@@ -0,0 +1 @@
1
+awk '{for(i=1;i<=NF;i++) count[$i]++} END {for(word in count) print word, count[word]}' words.txt | sort -k2,2nr
0 commit comments