加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > 服务器 > 安全 > 正文

【leetcode】bash脚本练习

发布时间:2020-12-15 23:12:14 所属栏目:安全 来源:网络整理
导读:【192】 Word Frequency ? ? Write a bash script to calculate the frequency of each word in a text file? words.txt . For simplicity sake,you may assume: words.txt ?contains only lowercase characters and space? ‘ ‘ ?characters. Each word mu

【192】Word Frequency? ?

Write a bash script to calculate the frequency of each word in a text file?words.txt.

For simplicity sake,you may assume:

  • words.txt?contains only lowercase characters and space?‘ ‘?characters.
  • Each word must consist of lowercase characters only.
  • Words are separated by one or more whitespace characters.
Example:
Assume that words.txt has the following content:

the day is sunny the the
the sunny is is
Your script should output the following,sorted by descending frequency:

the 4
is 3
sunny 2
day 1
Note:

Don‘t worry about handling ties,it is guaranteed that each word‘s frequency count is unique.
Could you write it in one-line using Unix pipes?

?

?

【193】Valid Phone Numbers ? ?

【194】Transpose File? ?

【195】Tenth Line

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读