Git 和 HTTPS git clone https://xxx.daFei 会返回 SSL certificate problem: unable to get local issuer certificate,这时候需要把HTTPS关闭一下 git config --global http.s ...
分类:
Web程序 时间:
2021-05-24 04:28:43
阅读次数:
0
思路,采取map存储每个值,键为该数字,值为次数,大余一次就弹出 var findRepeatNumber = function(nums) { let map = new Map(); for(let i = 0; i < nums.length; i ++){ if(map.has(nums[i ...
分类:
编程语言 时间:
2021-05-24 04:24:08
阅读次数:
0
新建一个Qt Widgets Application项目,不添加UI文件,如下图: 建立工程后,在**.pro**文件中添加: QT += charts 然后在**.h**文件中添加: #include "QChart" using namespace QtCharts; 在**.cpp**中,先添 ...
分类:
其他好文 时间:
2021-05-24 02:40:25
阅读次数:
0
Ibex 是什么? Ibex was initially developed as part of the PULP platform under the name "Zero-riscy", and has been contributed to lowRISC who maintains it ...
分类:
其他好文 时间:
2021-05-23 23:32:05
阅读次数:
0
文章针对 Windows 10 20H2,版本不同情况可能不同,仅供参考。 安装要求: Windows 10 Pro / Enterprise / Edu 版本在 Build 14393 以上的版本 Windows 必须是 64 位版本 需要启动 Windows Hyper-V 和容器特性 检查是否 ...
You are given a 0-indexed string s that has lowercase English letters in its even indices and digits in its odd indices. There is a function shift(c, ...
分类:
其他好文 时间:
2021-05-04 15:31:41
阅读次数:
0
Prefix and Suffix Search (H) 题目 Design a special dictionary which has some words and allows you to search the words in it by a prefix and a suffix. Im ...
分类:
其他好文 时间:
2021-05-03 12:54:25
阅读次数:
0
package com.itheima.demo02; public class DingYiShouJi { public static void main(String[] args) { String name1 ="华为 HUAWEI Mate 30E Pro 5G麒麟990E SoC芯片 ...
分类:
移动开发 时间:
2021-04-30 11:58:04
阅读次数:
0
unique(arr) { const res = new Map(); return arr.filter( (arr) => !res.has(arr.strat_id) && res.set(arr.strat_id, 1) ); }, ...
分类:
编程语言 时间:
2021-04-28 12:04:33
阅读次数:
0
Kinect4AlphaRobot 基于Kinect 2.0 与 Alpha 1s 阿尔法机器人的体感控制开发 项目是两位成员@Cheman @JYang 完成。 项目说明 项目通过Kinect捕捉人体动作数据,通过蓝牙模块控制 Alpha Robot (优必选阿尔法机器人1S) 演示视频 http ...
分类:
其他好文 时间:
2021-04-28 11:46:13
阅读次数:
0