public class test11 { public static void main(String[] args) { int [][]grid={{1,0,0,0},{1,1,0,0}}; int [][]hits={{1,1},{1,0}}; int []result=hitBricks( ...
分类:
其他好文 时间:
2021-01-18 10:36:45
阅读次数:
0
This time, you are supposed to find A×B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
其他好文 时间:
2021-01-16 12:09:45
阅读次数:
0
今日所学: AS 按钮的三种方式 (20条消息) Android studio使用小技巧之 快速生成onClick()点击方法_kill_bugs的博客-CSDN博客 遇到的问题: 一开始在虚拟机上运行一直没反应 后来在自己的手机上调试,有反应 后来新建了一个虚拟机,就可以了 还不知道问题出在哪里 ...
分类:
移动开发 时间:
2021-01-16 12:03:32
阅读次数:
0
在项目根目录下新建service文件夹,后续封装的文件放在这个文件夹下。 image.png 主要的封装是在LsxmRequest.js中,配置项在config.js中,api.js为接口的统一管理文件,项目接口增多时,可以考虑按照功能块对api.js进行进一步划分成多个模块,最后import到ap ...
分类:
移动开发 时间:
2021-01-16 12:00:24
阅读次数:
0
mongo --port 端口 查看用户use admindb.system.users.find().pretty() 查询操作次数db.serverStatus().opcounters 查看参数use admindb.adminCommand({getParameter:"*"})因为mgse ...
分类:
其他好文 时间:
2021-01-16 11:54:15
阅读次数:
0
<div style="display:inline-block;position:relative;"> <div style="position:absolute;right:2px;top:-2px;cursor:pointer;display:none;" class="input_clea ...
分类:
其他好文 时间:
2021-01-16 11:42:56
阅读次数:
0
vue3用composition api 取代了之前的options api,并且加强了支持typescript,另代码可读性和可改性更强了,用习惯了setup函数真的可以说句,真香。 但是不可避免的,需要趟一些雷,比方说element-plus的表单验证功能。由于setup里取消了this获取实例 ...
分类:
其他好文 时间:
2021-01-15 11:42:05
阅读次数:
0
sudo apt-get update sudo apt-get install python3-dev # 装talib前要先装numpy python3.6 -m pip install numpy -i https://pypi.doubanio.com/simple wget http:// ...
分类:
系统相关 时间:
2021-01-14 10:54:36
阅读次数:
0
一,home组件,侧边栏静态页面搭建, 1.1。去element-ui找组件 按需引入element组件 import Vue from 'vue' import { Button, Form, FormItem, Input, Message, Container, Header, Aside, ...
分类:
其他好文 时间:
2021-01-13 11:14:06
阅读次数:
0
find指令 将从指定目录下递归的遍历其各个子目录,将满足条件的文件或者目录显示在终端。基本语法find [搜索范围][选项]选项说明name 按照文件名user 按照用户名查找size 按照文件大小来查找 案例1:按文件名:根据名称查找/home目录下的hello.txt文件 find /home ...
分类:
其他好文 时间:
2021-01-12 11:11:54
阅读次数:
0