- 博客(3)
- 收藏
- 关注
原创 CentOS7配置本地yum源
1、首先查看Media的repo文件[root@localhost ~]# cat /etc/yum.repos.d/CentOS-Media.repo # CentOS-Media.repo## This repo can be used with mounted DVD media, verify the mount point for# CentOS-7. You can
2018-01-11 22:40:30 601
原创 192、统计词频
题目:写一个 bash 脚本以统计一个文本文件 words.txt 中每个单词出现的频率。为了简单起见,你可以假设:words.txt只包括小写字母和 ' ' 。每个单词只由小写字母组成。单词间由一个或多个空格字符分隔。示例:假设 words.txt 内容如下:the day is sunny the thethe sunny is is你的脚本应当输出(以词频...
2018-08-17 22:24:25 152
原创 1、两数之和
题目:给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。示例:给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]思路:遍历数组,通过获取差值的下标值来判断。答案:/** *...
2018-08-17 22:17:52 147
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人