We all, whether we know it or not, are fighting to make the kind of a world that we should like.不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。 Python —— pycharm初使用 电脑需要 ...
分类:
编程语言 时间:
2020-07-03 14:06:47
阅读次数:
95
python内置函数-排列组合函数 product 笛卡尔积 (有放回抽样排列) permutations 排列 (不放回抽样排列) combinations 组合,没有重复 (不放回抽样组合) combinations_with_replacement 组合,有重复 (有放回抽样组合) 详细的参见 ...
分类:
编程语言 时间:
2020-07-01 14:13:21
阅读次数:
81
We can do anything we want to do if we stick to it long enough.只要锲而不舍,我们便能做自己想做的任何事情。 大学物理 —— 磁场中的磁介质 花了几天搞了些事情,祝我一切顺利。 目录 1. 磁介质对磁场的影响2. 原子的磁矩3. 磁介质的 ...
分类:
其他好文 时间:
2020-06-30 22:45:44
阅读次数:
90
端午出去玩的时候,老板打电话说公司网站的 HTTPS 过期了,访问不了(见下图),要我立马升级一下。可惜我当时没带电脑,无能为力,可把老板急坏了。 没办法,急就先急着,只能等我有电脑了才能搞。点击高级,可以看到以下信息: z.xxxx.cn 通常会使用加密技术来保护您的信息。Google Chrom ...
分类:
Web程序 时间:
2020-06-30 10:57:54
阅读次数:
72
Given a list of airline tickets represented by pairs of departure and arrival airports [from, to], reconstruct the itinerary in order. All of the tick ...
分类:
其他好文 时间:
2020-06-30 09:15:20
阅读次数:
87
Combination Sum II (M) 题目 Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidate ...
分类:
其他好文 时间:
2020-06-27 10:04:01
阅读次数:
52
视图(View)用于展示模型(Model)数据。 view 常用的方式有引用母版页或者不引用母版页 @model IEnumerable<myfirstweb.models.Student> //@model声明controller传入的数据类型,传入的是一个可枚举类型 <html> <head> ...
分类:
Web程序 时间:
2020-06-22 14:44:29
阅读次数:
59
周赛地址(英):Weekly Contest 194 周赛地址(中):第 194 场周赛 仓库地址:week-Leetcode 1486. XOR Operation in an Array Given an integer n and an integer start. Define an arr ...
分类:
其他好文 时间:
2020-06-21 19:54:59
阅读次数:
61
给定一个仅包含数字 2-9 的字符串,返回所有它能表示的字母组合。
给出数字到字母的映射如下(与电话按键相同)。注意 1 不对应任何字母。 ...
分类:
其他好文 时间:
2020-06-19 12:07:40
阅读次数:
51
一,字符串是序列 字符串和整形、浮点数以及布尔值很不一样。一个字符串是一个序列,意味着是对其他值的有序排列。 字符串就是一串有序的字符。你可以通过方括号操作符,每次去访问字符串中的一个字符: >>> fruit = 'banana' >>> letter = fruit[1] 第二个语句选择了 fr ...
分类:
编程语言 时间:
2020-06-18 22:08:37
阅读次数:
74