风趣石头

文章
5
资源
0
加入时间
2年10月17天

Codeforces Round #529 (Div. 3)(全部题解)

A. Repeating Cipher题意:将一个字符串S的第一个字符写一次,第二个写两次,第三个写三次......得到字符串t,给你t,求S分析:根据规则,t的第一个,第二个,第四个,第七个,第十一个......便是S的组成代码:#include <cstdio>#include <iostream>#include <algorith...

Python爬虫爬有道翻译

python爬取有道翻译实现原理操作步骤注意事项实现原理利用urllib包中的request对象模拟浏览器访问有道翻译服务器(发送相同格式的request)。用urllib包中的parse来将数据转化为相同格式。得到的相应通过编码之后,以dict形式取出翻译内容。import urllib.requestimport urllib.parseimport jsonurl = 'h...

angular定义数组_Angular使用技巧:NgIf 非常规用法

NgIf 是angular中使用频率非常高的指令,它的作用简单点说就是叛定一个表达式,并根据叛定结果匹配相应模板。 NgIf 基本用法 <div *ngIf="condition; then thenBlock else elseBlock"></div><ng-template #thenBlock>Content to render when condit...