/* react路由的配置: 1、找到官方文档 https://reacttraining.com/react-router/web/example/basic 2、安装 cnpm install react-router-dom --save 3、找到项目的根组件引入react-router-do ...
分类:
其他好文 时间:
2020-03-15 18:48:36
阅读次数:
49
[TOC] Docker 使用杂记 最佳实践尝试 实战 本文记录了一个项目中使用docker构建环境的过程 Docker简介 Docker NB!好了 其他简介自己看网上吧 项目背景 内在原因 这次的代码基于一个特定的tensorflow版本构建(才不是tf2跑不起来呢! 外在原因 与别人分享代码的 ...
分类:
其他好文 时间:
2020-03-15 17:36:41
阅读次数:
80
问题: 给出给定数组的描述: Example 1: Input: [0,1,2,4,5,7] Output: ["0->2","4->5","7"] Explanation: 0,1,2 form a continuous range; 4,5 form a continuous range. Ex ...
分类:
其他好文 时间:
2020-03-15 15:03:03
阅读次数:
53
每日温度。题意是给一个数组,表示每天的气温,请返回一个数组,对应位置的输入是你需要再等待多久温度才会升高超过该日的天数。如果之后都不会升高,请在该位置用 0 来代替。例子, For example, given the list of temperatures T = [73, 74, 75, 71 ...
分类:
其他好文 时间:
2020-03-15 10:02:10
阅读次数:
54
linkage Installation 1. Add a "non-free" component to /etc/apt/sources.list for your Debian version, for example: # Debian 9 "Stretch" deb http://deb. ...
分类:
其他好文 时间:
2020-03-15 09:58:54
阅读次数:
66
Given an array A of non-negative integers, return the maximum sum of elements in two non-overlapping (contiguous) subarrays, which have lengths L and ...
分类:
移动开发 时间:
2020-03-15 09:54:01
阅读次数:
75
[TOC] 【新手友好型视频】全面讲解Java一维数组(内含带答案和讲解的练习题彩蛋喔)看完即上手!更有详解版练习题来帮你加深印象~~ 视频讲解: "点击这里即可到小乔的B站观看" 一、数组的概述 数组(Array),是存储一系列 同类型数据元素 的一种数据结构。它通过数组名和一个整型下标可访问数组 ...
分类:
编程语言 时间:
2020-03-15 09:49:02
阅读次数:
91
app.js /* react路由的配置: 1、找到官方文档 https://reacttraining.com/react-router/web/example/basic 2、安装 cnpm install react-router-dom --save 3、找到项目的根组件引入react-ro ...
分类:
其他好文 时间:
2020-03-15 09:22:58
阅读次数:
46
自定义注解: package com.example.demo.ann; import org.springframework.stereotype.Repository; import java.lang.annotation.*; //注解运行的位置 @Target(ElementType.TY ...
分类:
编程语言 时间:
2020-03-14 20:01:16
阅读次数:
187
链表中的下一个更大节点。题意是给一个linkedlist,请返回当前节点之后所有节点里面值最大的节点。注意最后一个节点之后因为没有其他节点了,所以返回0。例子, Example 1: Input: [2,1,5] Output: [5,5,0] Example 2: Input: [2,7,4,3, ...
分类:
其他好文 时间:
2020-03-14 11:14:08
阅读次数:
56