Skip to content

Commit 3de0189

Browse files
authored
Merge pull request #2 from aryaman0406/aryaman0406-patch-2
Create 192. Word Frequency
2 parents a140833 + d721dba commit 3de0189

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

192. Word Frequency

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tr -s ' ' '\n' < words.txt | sort | uniq -c | sort -nr | awk '{print $2, $1}'

0 commit comments

Comments
 (0)