Due: 26 November 2019 PLID50 | Lab 4/5Lab 4/5: Top-down effects on PerceptionThese final two laboratory assignments examine a very similar phenomenon: ...
分类:
其他好文 时间:
2019-12-04 13:00:51
阅读次数:
79
Motif discovery is in loose terms the problem of finding interesting patterns in sequences. motif: interest patterns/ subsequences in sequences. two w ...
分类:
其他好文 时间:
2019-12-04 01:27:26
阅读次数:
82
算法: 报数序列是一个整数序列,按照其中的整数的顺序进行报数,得到下一个数。其前五项如下: 1. 12. 113. 214. 12115. 1112211 被读作 "one 1" ("一个一") , 即 11。11 被读作 "two 1s" ("两个一"), 即 21。21 被读作 "one 2", ...
分类:
其他好文 时间:
2019-12-01 20:26:37
阅读次数:
67
DEF 题对于 wyh 来说过于毒瘤,十分不可做。 A. Heating Description: 给定$a,b$,将$b$分成至少$a$个正整数,使这些正整数的平方和最小。 Solution: ~~sb题,3minA掉,但是提交代码花了我近20min~~ Code: B. Obtain Two Z ...
分类:
其他好文 时间:
2019-12-01 10:14:05
阅读次数:
85
题目:两个竞争的学生 链接:(两个竞争的对手)[https://codeforces.com/contest/1257/problem/A] 题意:有n个学生排成一行。其中有两个竞争的学生。第一个学生在位置a,第二个学生在位置b,位置从左往右从1到n编号。 你的目的是在经过x次交换后,他们之间的距离 ...
分类:
其他好文 时间:
2019-11-30 09:40:11
阅读次数:
72
Two Sum Java解决方案 Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each in ...
分类:
编程语言 时间:
2019-11-29 23:41:06
阅读次数:
110
原题链接在这里:https://leetcode.com/problems/sentence-similarity/ 题目: Given two sentences words1, words2 (each represented as an array of strings), and a lis ...
分类:
其他好文 时间:
2019-11-28 13:17:11
阅读次数:
80
Use SM36 to create a job with two steps, step 1 with the BTCLOOP report and step 2 with the report to be debugged. Then release the job. You can then ...
分类:
其他好文 时间:
2019-11-28 10:38:33
阅读次数:
83
pygame中获取鼠标位置:pos = pygame.mouse.get_pos() 把一连串的位置添加到一个列表中 points = [ ] points.append(pos) 用这个列表在窗口中连线 连线有三个方法 :1.pygame.draw.lines(要画的平面,线的颜色,是否闭合(Tr ...
分类:
其他好文 时间:
2019-11-27 23:49:35
阅读次数:
211
原题链接在这里:https://leetcode.com/problems/shortest-bridge/ 题目: In a given 2D binary array A, there are two islands. (An island is a 4-directionally connec ...
分类:
其他好文 时间:
2019-11-26 13:36:09
阅读次数:
59