Objectives and Outcomes In this exercise, you will continue to learn to use Grunt, the task runner. You will configure the Grunt file with a set of ad ...
分类:
其他好文 时间:
2018-05-25 13:25:24
阅读次数:
161
NPM Scripts Part 2 Objectives and Outcomes In this exercise you will learn to build a distribution folder containing the files that can be deployed on ...
分类:
Web程序 时间:
2018-05-24 16:41:24
阅读次数:
416
https://data-artisans.com/blog/kafka-flink-a-practical-how-to https://github.com/dataArtisans/kafka-example http://training.data-artisans.com/exercise ...
分类:
其他好文 时间:
2018-05-23 02:28:52
阅读次数:
153
编码 请说明python2 与python3中的默认编码是什么? # 答案 py2默认ASCII码,py3默认的utf8 为什么会出现中文乱码?你能列举出现乱码的情况有哪几种? 解释器的环境 如何进行编码转换? # 答案 字符串在python内部中是采用unicode的编码方式,所以其他语言先dec ...
分类:
其他好文 时间:
2018-05-15 20:56:20
阅读次数:
437
题目:http://172.21.85.56/oj/exercise/problem?problem_id=21568 题目大意:老板需要你帮忙浇花。给出N滴水的坐标,y表示水滴的高度,x表示它下落到x轴的位置。 每滴水以每秒1个单位长度的速度下落。你需要把花盆放在x轴上的某个位置,使得从被花盆接着 ...
分类:
其他好文 时间:
2018-05-11 17:17:10
阅读次数:
199
题目链接: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3362&konwledgeId=40 解题思路: 正向求解很难。考虑如果给定一个长度,判断这个长度x是否符合要求是很简单的,只需要贪心对于每个1划分一个长度x的段 ...
分类:
其他好文 时间:
2018-05-05 01:04:47
阅读次数:
180
题目链接: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3369&konwledgeId=40 解题思路: 按照题意把每个出现的字符替换掉就可以了。 ...
分类:
其他好文 时间:
2018-05-02 02:59:37
阅读次数:
157
题目链接: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3347&konwledgeId=40 解题思路: 直接求出所有的最短路,以及最短路上的特征距离。 ...
分类:
其他好文 时间:
2018-05-02 02:40:06
阅读次数:
141
题目链接: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3368&konwledgeId=40 解题思路: 首先,我们检查一下一个字符串是否在另一个字符串当中出现过,可以把出现过的字符串全都删除。 然后对于互相不包含的字 ...
分类:
其他好文 时间:
2018-05-02 02:36:14
阅读次数:
191
题目链接: http://exercise.acmcoder.com/online/online_judge_ques?ques_id=3352&konwledgeId=40 解题思路: 首先,考虑一维的情况。a1,a2,a3,....an的最大子序列和。我们维护一个(最大前缀和),当这个前缀和小于 ...
分类:
其他好文 时间:
2018-04-26 23:23:00
阅读次数:
117