企业面试题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了企业面试题相关的知识,希望对你有一定的参考价值。
1、按单词出现频率降序排序!
2、按字母出现频率降序排序!
the squid project provides a number of resources toassist users design,implement and support squid installations. Please browsethe documentation and support sections for more infomation
推荐答案
grep -o "[a-Z]" oldboy.log|sort|uniq -c|sort -rn|head -5
sed -r ‘s#[ .,]##g‘ oldboy.log|awk -F "" ‘{for(i=1;i<=NF;i++)S[$i]++}END{for(k in S)print S[k],k}‘|sort -rn|head -5
以上是关于企业面试题的主要内容,如果未能解决你的问题,请参考以下文章