1.1 字符集 1.1.1 js程序使用Unicode字符集编写的。Unicode是ASCII 和Latin-1的超集,并支持地球上几乎所有在用的语言。 1.1.2 JavaScript是区分大小写的语言,HTML不区分大小写,所以在html中标记和属性名可以大写也可以小写, 但是例如设置时间处理程 ...
分类:
其他好文 时间:
2019-02-03 16:49:09
阅读次数:
191
Two people are playing a game with a string ss, consisting of lowercase latin letters. On a player's turn, he should choose two consecutive equal lett ...
分类:
其他好文 时间:
2019-01-23 10:39:52
阅读次数:
195
1.利用Python实现Pig Latin字母游戏 “Pig Latin”是一个英语儿童文字改写游戏,整个游戏遵从下述规则:a. 元音字母是‘a’、‘e’、‘i’、‘o’、‘u’。字母‘y’在不是第一个字母的情况下,也被视作元音字母。其他字母均为辅音字母。例如,单词“yearly”有三个元音字母(分 ...
分类:
编程语言 时间:
2019-01-18 20:02:27
阅读次数:
324
一.字符编码表 编码表:字符和计算机二进制的对应关系表。 ascii: 一个字节中的7位就可以表示。对应的字节都是正数。0-xxxxxxx iso-8859-1:拉丁码表 latin,用了一个字节用的8位。1-xxxxxxx 负数。 GB2312:简体中文码表。包含6000-7000中文和符号。用两 ...
分类:
编程语言 时间:
2019-01-04 14:38:18
阅读次数:
132
A sentence S is given, composed of words separated by spaces. Each word consists of lowercase and uppercase letters only. We would like to convert the ...
分类:
其他好文 时间:
2018-12-18 11:07:44
阅读次数:
128
遇到的问题 1)TypeError: dump() missing 1 required positional argument: 'fp' 字典和json格式转换的时候遇到的,用法错误,需要用dumps 2)UnicodeEncodeError: 'latin-1' codec can't enc ...
分类:
编程语言 时间:
2018-11-30 22:33:27
阅读次数:
505
题面pdfhttps://codeforc.es/gym/101889/attachments/download/7471/statements-2017-latam-regional.pdf zyn感冒,两个人打。刚开始两题超迅速,40分钟后开始各种写不出,自闭。然后突然又开出两题。 4题全部1A ...
分类:
其他好文 时间:
2018-11-18 17:29:28
阅读次数:
296
http://codeforces.com/contest/1015/problem/B You are given two strings ss and tt. Both strings have length nn and consist of lowercase Latin letters. ...
分类:
其他好文 时间:
2018-10-24 22:28:42
阅读次数:
448
http://codeforces.com/contest/1029/problem/A You are given a string tt consisting of nn lowercase Latin letters and an integer number kk. Let's define ...
分类:
其他好文 时间:
2018-10-20 21:03:27
阅读次数:
202
题目标签:String 首先把vowel letters 保存入 HashSet。 然后把S 拆分成 各个 word,遍历每一个 word: 当 word 第一个 字母不是 vowel 的时候,把第一个char 加到最后; 然后添加“ma” 和 “a“ 到最后; 添加新的"a"; 把新的 word ...
分类:
其他好文 时间:
2018-10-14 01:57:27
阅读次数:
242