常用配置 热部署 配置依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> <optional>true</optional> </depen ...
分类:
编程语言 时间:
2020-06-22 01:27:22
阅读次数:
51
Shell学习 第一节 基本语法 变量 表达式 判断语句 If表达式 一、先来看一个简单的shell程序: mkdir test cd test/ vim example01.sh example.sh #!/bin/bash等于#!/bin/sh (#!跟shell命令的完全路径。 作用: 显示后 ...
分类:
系统相关 时间:
2020-06-21 20:05:24
阅读次数:
71
问题: 给定8*8棋盘中,queen的坐标,和king的坐标。 king的同一行,同一列,同一对角线上的第一个queen,为可攻击king的queen 求所有可攻击king的queen的坐标数组。 Example 1: Input: queens = [[0,1],[1,0],[4,0],[0,4] ...
分类:
其他好文 时间:
2020-06-21 16:16:42
阅读次数:
51
cp /usr/share/openldap-servers/DB_CONFIG.example /var/lib/ldap/DB_CONFIG /etc/init.d/slapd stop rm -rf /var/lib/ldap/* rm -rf /etc/openldap/slapd.d/* ...
分类:
其他好文 时间:
2020-06-21 15:41:36
阅读次数:
74
问题: 给定两个等长字符串s和t,相同index上的元素差值为cost 求cost和最大不超过maxCost,所满足的最长子串的长度。 Example 1: Input: s = "abcd", t = "bcdf", maxCost = 3 Output: 3 Explanation: "abc" ...
分类:
其他好文 时间:
2020-06-21 11:57:15
阅读次数:
52
Remove Nth Node From End of List (M) 题目 Given a linked list, remove the n-th node from the end of list and return its head. Example: Given linked list ...
分类:
其他好文 时间:
2020-06-21 10:15:33
阅读次数:
51
如题 id:"0" visible:false $route path:"/example/table" query:Object (empty) params:Object (empty) fullPath:"/example/table" name:"Table" meta:Object cli ...
分类:
其他好文 时间:
2020-06-21 09:47:20
阅读次数:
127
Perfect Squares (M) 题目 Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. Exa ...
分类:
其他好文 时间:
2020-06-21 09:19:56
阅读次数:
46
一、我们创建一个新的android项目来进行演示广播机制中是如何?显示网络状态的。 package com.example.broadcasttest2; import android.app.Activity; import android.content.BroadcastReceiver; i ...
分类:
移动开发 时间:
2020-06-21 09:19:27
阅读次数:
64
本文转自https://freeaihub.com/article/shallowcopy-and-deepcopy-example-in-python.html,前往该页可在线运行实例进行理解。 在本节中,您将通过运行Python中的浅拷贝和深拷贝实例来理解copy模块创造副本的不同。 在Pyth ...
分类:
编程语言 时间:
2020-06-21 09:18:55
阅读次数:
52