1 完整代码下载 https://pan.baidu.com/s/1JJyVcP2KqXsd5G6eaYpgHQ 提取码 3fzt (压缩包名: 2020-3-14-demo.zip) 2 图片展示: ...
分类:
编程语言 时间:
2020-03-17 21:14:20
阅读次数:
76
一、题目 给你一个包含 n 个整数的数组 nums,判断 nums 中是否存在三个元素 a,b,c ,使得 a + b + c = 0 ?请你找出所有满足条件且不重复的三元组。 注意:答案中不可以包含重复的三元组。 示例: 二、题解 思路1: 之前有道算法题,是求两数之和,所以想法就是先遍历数组,固 ...
分类:
其他好文 时间:
2020-03-17 08:06:12
阅读次数:
59
问题描述 给定当前的时间,请用英文的读法将它读出来。 时间用时h和分m表示,在英文的读法中,读一个时间的方法是: 如果m为0,则将时读出来,然后加上“o'clock”,如3:00读作“three o'clock”。 如果m不为0,则将时读出来,然后将分读出来,如5:30读作“five thirty” ...
分类:
其他好文 时间:
2020-03-16 11:17:36
阅读次数:
63
python decorator is a crucial(vital,signifiant) process. decorator mail two category 1:principal function no arguments(parameters): for example: princ ...
分类:
编程语言 时间:
2020-03-15 22:19:20
阅读次数:
57
问题:求一个数列里三个数相乘的最大值 Input: [1,2,3] Output: 6 Input: [1,2,3,4] Output: 24 Note: 1.The length of the given array will be in range [3,104] and all element ...
分类:
其他好文 时间:
2020-03-15 13:25:00
阅读次数:
53
题目: 给定一个整数,打印该整数的英文描述。 示例 1: 输入: 123输出: "One Hundred Twenty Three"示例 2: 输入: 12345输出: "Twelve Thousand Three Hundred Forty Five"示例 3: 输入: 1234567输出: "O ...
分类:
其他好文 时间:
2020-03-14 16:32:15
阅读次数:
63
本项目需要用到的时echarts,接下来展示文件目录 接下来展示各个文件的内容 base文件内容: package three; public class base { String value; String name; public String getValue() { return valu ...
分类:
其他好文 时间:
2020-03-14 11:17:28
阅读次数:
85
1 完整代码下载 https://pan.baidu.com/s/1JJyVcP2KqXsd5G6eaYpgHQ 提取码 3fzt (压缩包名: 2020-3-12-demo.zip) 2 图片展示 3 代码展示 1 (function(v, f){ 2 'use strict'; 3 4 if(! ...
分类:
编程语言 时间:
2020-03-14 01:09:32
阅读次数:
60
题意~~反向~~翻译: A tree with N points, with point 1 as the root, and the tree points have edge weights. Then there are M There are three types of operation ...
分类:
其他好文 时间:
2020-03-13 13:06:54
阅读次数:
55
前言threejs官网:https://threejs.org/ github各个版本:https://github.com/mrdoob/three.js/tags 版本更迭很快,我用的时候还是r90秒秒钟r91出来了 刚入门的时候可以看看这个教程:http://www.hewebgl.com/a ...
分类:
Web程序 时间:
2020-03-12 09:40:57
阅读次数:
105