1. Description: Notes: 2. Examples: 3.Solutions: 1 /** 2 * Created by sheepcore on 2019-05-07 3 */ 4 class Solution { 5 public int minAddToMakeValid(S ...
分类:
编程语言 时间:
2020-03-02 15:08:12
阅读次数:
76
1. Description: Notes: 2. Examples: 3.Solutions: 1 /** 2 * Created by sheepcore on 2019-03-07 3 * Your MyQueue object will be instantiated and called ...
分类:
编程语言 时间:
2020-03-02 15:07:09
阅读次数:
68
1. Description: Notes: 2. Examples: 3.Solutions: 1 /** 2 * Created by sheepcore on 2019-05-07 3 * Your MyStack object will be instantiated and called ...
分类:
编程语言 时间:
2020-03-02 14:58:48
阅读次数:
75
1. Description: 2. Examples: 3.Solutions: 1 /** 2 * Created by sheepcore on 2019-05-07 3 * Your MinStack object will be instantiated and called as suc ...
分类:
编程语言 时间:
2020-03-02 14:56:29
阅读次数:
79
1. Description: 2. Examples: 3.Solutions: 1 /** 2 * Created by sheepcore on 2019-05-07 3 */ 4 5 class Solution { 6 public boolean isValid(String s) { ...
分类:
编程语言 时间:
2020-03-02 14:28:01
阅读次数:
68
Vue 接收数据for循环渲染出的标签jQuery渲染的点击事件无效 Vue在渲染页面的时候使用jQuery的时候会发现当在created生命周期中获取后台数据,写在 mounted 生命周期的jquery渲染的点击事件不管用了。 理论上,mounted是界面html生成结束才会开始执行的,应该是可 ...
分类:
Web程序 时间:
2020-03-02 13:11:09
阅读次数:
81
1. Description notes: 2. Examples: 3. Solution: 1 """ 2 created by sheepcore on 2020-03-02 3 """ 4 from typing import List 5 6 7 def smallerNumbersTha ...
分类:
编程语言 时间:
2020-03-02 10:44:31
阅读次数:
78
我们都知道 django 里面模型设计 一般会有常用的两个字段 创建时间 和 修改时间,这两个字段的定义是这样的: created = models.DateTimeField(auto_now_add=True, verbose_name="添加时间") updated = models.Date ...
分类:
其他好文 时间:
2020-03-01 14:15:25
阅读次数:
66
1. 生成so文件 https://www.cnblogs.com/luckygxf/p/11894773.html 2. 解析so文件 3. 调用so库函数 // // Created by gxf on 2020/2/27. // #include "hello.h" #include <std ...
分类:
其他好文 时间:
2020-03-01 12:33:32
阅读次数:
153
一、 概念 LVM:逻辑卷管理(Logical Volume Manager) 二、 由来 ? 普通的磁盘分区管理方式在逻辑分区划分好之后就无法改变其大小,当一个逻辑分区存放不下某文件时,这个文件因为受上层文件系统的限制,不能跨越多个分区存放,所以也不能放到多个磁盘上。而当某个分区空间耗尽时,解决的 ...
分类:
其他好文 时间:
2020-02-29 20:39:05
阅读次数:
86