安装背景: Ubuntu 16.0.4, 集成显卡,不能连接外网,需要使用Tensorflow2.0 安装软件配套: Anaconda3-4.7(内部继承Python3.7),TensorFlow2.0(文件应包含cp37-cp37m-manylinux2010_x86_64,其中cp37-cp37 ...
分类:
系统相关 时间:
2020-01-17 10:16:16
阅读次数:
239
原题链接在这里:https://leetcode.com/problems/shortest-way-to-form-string/ 题目: From any string, we can form a subsequence of that string by deleting some numb ...
分类:
其他好文 时间:
2020-01-17 10:01:32
阅读次数:
91
原始数据: var originalList = new List<dynamic>() { new{ Name="张三",age=10,Title1="职业一",Title2="职业二"}, new{ Name="李四",age=10,Title1="职业一",Title2="职业二"}, new ...
分类:
编程语言 时间:
2020-01-16 19:10:54
阅读次数:
66
1、安装选项不要回车,先按table键,在quite后面加入hpsa.hpsa_simple_mode=1hpsa.hpsa_allow_any=1按Ctrl+X或回车安装。2、安装完成后启动也是一样按table操作。3、永久生效vi//boot/grub2/grub.cfg找到“linux17”行加入hpsa.hpsa_simple_mode=1hpsa.hpsa_allow_any=1保存。
分类:
其他好文 时间:
2020-01-16 17:19:13
阅读次数:
509
【题目】题目链接 Two players take turns picking candies from n heaps,the player who picks the last one will win the game.On each turn they can pick any number ...
分类:
其他好文 时间:
2020-01-16 14:47:51
阅读次数:
57
Given an integer n, return any array containing n unique integers such that they add up to 0. Example 1: Input: n = 5 Output: [-7,-1,1,3,4] Explanatio ...
分类:
其他好文 时间:
2020-01-16 14:19:16
阅读次数:
90
As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some ro ...
分类:
其他好文 时间:
2020-01-16 13:02:01
阅读次数:
85
客户反馈,11.2.0.4,Linux7 GI集群软件,Oracle软件均已正常安装完毕。 DBCA建库,出现 VIP do not all share the same subnetwork,or the vip subnetwok does not match that of any publi ...
分类:
其他好文 时间:
2020-01-16 01:03:11
阅读次数:
112
循环指令 *ngFor 语法:<any *ngFor="let tmp of list "></any> demo03.component.ts app.component.ts app.module.ts 当不使用*ngFor时, 注意template模板解析要加双引号 {{ }} ...
分类:
其他好文 时间:
2020-01-16 00:40:21
阅读次数:
106
前言 该文章描述了函数any()的使用 2020-01-15 天象独行 0X01;描述 any() 函数用于判断给定的可迭代参数 iterable 是否全部为 False,则返回 False,如果有一个为 True,则返回 True。 元素除了是 0、空、FALSE 外都算 TRUE。 注意:Pyt ...
分类:
编程语言 时间:
2020-01-15 21:21:41
阅读次数:
67