break,continue和label语句 break 语句会立即退出循环,2904628156 var num = 0; for (var i=1; i < 10; i++) { if (i % 5 == 0) { break; } num++; } alert(num); //4 强制继续执行 ...
分类:
其他好文 时间:
2019-10-16 10:00:23
阅读次数:
89
Given a string s , find the length of the longest substring t that contains at most 2 distinct characters. Example 1: Example 2: ...
分类:
其他好文 时间:
2019-10-15 10:15:53
阅读次数:
83
In this post, I review the literature on semantic segmentation. Most research on semantic segmentation use natural/real world image datasets. Although... ...
分类:
其他好文 时间:
2019-10-14 23:44:27
阅读次数:
165
2019-10-14 22:21:29 问题描述: 问题求解: 暴力求解必然会超时,那么就需要考虑数学的方法来降低时间复杂度了。 ...
分类:
其他好文 时间:
2019-10-14 23:35:33
阅读次数:
110
In a 2D grid of s and s, we change at most one to a . After, what is the size of the largest island??(An island is a 4 directionally connected group o ...
分类:
其他好文 时间:
2019-10-14 01:24:21
阅读次数:
105
Numpy数组的运算: numpy数组最大的特点是任何运算,都会自动的对数组当中的所有变量进行运算,所以千万不要试图自己去使用循环去取数组当中的值进行运算(非常愚蠢)。 1.相同大小的数组之间的运算 数组可以不编写循环而对数据执行批量运算,称之为矢量化,大小相同数组之间的算术运算将会应用到元素级。 ...
分类:
编程语言 时间:
2019-10-08 16:00:35
阅读次数:
134
题目链接: "Kattis largesttriangle" Description Given $N$ points on a $2$ dimensional space, determine the area of the largest triangle that can be formed ...
分类:
其他好文 时间:
2019-10-06 00:52:11
阅读次数:
345
Well, to begin with, I'd like to say thank you to MIT open courses twice. It's their generosity that gives me the priviledge to enjoy the most outstan ...
分类:
其他好文 时间:
2019-10-05 22:27:34
阅读次数:
131
python中获取对象信息 拿到一个变量,除了用 isinstance() 判断它是否是某种类型的实例外,还有没有别的方法获取到更多的信息呢? 例如,已有定义: 1 class Person(object): 2 def __init__(self, name, gender): 3 self.na ...
分类:
编程语言 时间:
2019-10-05 18:28:36
阅读次数:
88
import refrom collections import Countertxt = open('readme.txt',mode='r').read()#读取文件list1 = re.split('\W+',txt)#以不是英文字母来区分单词out1 = Counter(list1)#统计词... ...
分类:
其他好文 时间:
2019-10-05 12:36:40
阅读次数:
92