- 博客(14)
- 收藏
- 关注
转载 Android项目模块化遇到的问题
1、问题背景gradle 4MacOs 10.14.3Android Studio 3在android模块化的时候,例如,有两个模块,一个是usercenter,另一个是common。其中usercenter是依赖于common,在usercenter的build gradle添加如下的语句implementation project(':common')而common...
2019-02-25 20:09:00 210
转载 [Offer收割]编程练习赛84 -- 括号序列
时间限制:10000ms单点时限:1000ms内存限制:256MB描述给定一个只包含'(', ')'和''的字符串S,现在小Hi可以任意指定''为'('或')',不同的'*'可以是不同的字符。请你判断小Hi是否可能得到一个合法匹配的字符串。输入第一行包含一个整数T,代表数据的组数。以下N行每行一个字符串S。1 ≤ T ≤ 10 1 ≤ |S| ≤ 1000输出对于每...
2018-11-25 23:33:00 118
转载 D. Vasya And The Matrix(Educational Codeforces Round 48)
D. Vasya And The Matrixtime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputNow Vasya is taking an exam in mathematics. In order to get a goo...
2018-08-04 22:42:00 120
转载 429c Leha and Function
题目解题报告F(n, k)是在集合{1, 2, 3, ..., n}中所有的具有k个元素的子集中分别取最小值,相加后的期望。例如:要求F(4, 2),根据定义有{1, 2}, {1, 3}, {1, 4}, {2, 3}, {2, 4}, {3, 4},则F(4, 2)=(1+1+1+2+2+3)/6=1.6666666666666...对于F(n, k),我们有这么一个结论...
2017-08-19 11:08:00 78
转载 Sublime Text3 配置C++(附oj刷题常用模板)
# 下载对应平台的sublimesublime最新版下载, 字体样式个人喜欢Consolas, 另附注册码:—– BEGIN LICENSE —– TwitterInc 200 User License EA7E-890007 1D77F72E 390CDD93 4DCBA022 FAF60790 61AA12C0 A37081C5 D0316412 4584D1...
2017-08-15 11:08:00 272
转载 ZOJ-3960 What Kind of Friends Are You?
What Kind of Friends Are You?Time Limit:1 Second Memory Limit:65536 KBJapari Park is a large zoo home to extant species, endangered species, extinct species, cryptids and some legendary ...
2017-04-22 23:26:00 156
转载 MAC上安装 HLA(High Level Assembly)
1.安装HLA最新版的hla汇编器可在这里下载,支持MacOs,Linux,Windows平台2.安装步骤将下载好的hla程序包放在Mac根目录下最重要的一步是设置好环境变量,打开Mac根目录下的 .bash_profile加入以下环境变量export hlalib="$HOME/hla/hlalib/" ...
2017-01-05 14:32:00 252
转载 ubuntu14 安装配置nginx+php5+mysql
1.首先,升级软件包sudo apt-get updatesudo apt-get upgrade2.安装nginxsudo apt-get install nginx在浏览器输入服务器ip测试nginx是否安装成功3.安装数据库sudo apt-get install mysql-server php5-mysql输入mysql -u root -p 测试数据库是否安装...
2016-10-17 20:21:00 91
转载 Mac安装mysql
### 第一步安装后一定要记住初始密码### 第二步打开终端cd /usr/local/mysql/bin./mysql -u root -p #输入初始密码set password = password('123abc');### 第三步设置环境变量cd ~sudo vim .bash_profile在文档的最下方输入:export PATH=${PATH}...
2016-09-25 10:38:00 84
转载 phpcms首页实现轮播图
1.在你想要加轮播图的位置加入以下 1 <div id="flowDiagram" > 2 <div id="button"> 3 <span index="1" class="on"></span> 4 <span index="2">&l...
2016-08-08 08:48:00 485
转载 mysql表单输入数据出现中文乱码解决方法
MySQL会出现中文乱码的原因在于1.server本身设定问题,一般来说是latin12.建库建表时没有制定编码格式。解决方法:1.建库的时候1 CREATE DATABASE test 2 CHARACTER SET 'utf8' 3 COLLATE 'utf8_general_ci'; 2.建表的时候1 CREATE TABLE ...
2016-07-26 11:04:00 162
转载 swift实现水仙花数
import Foundationfunc f(a: Int) -> Int { var x = a x *= a x *= a return x}var a, b, c: Intfor x in 100...999 { a = x%10 b = x/10%10 c = x/100 ...
2016-07-23 09:01:00 583
转载 php实现数据粘性例子
php实现表单粘性例子在填表单的时候,有时候会出现表单未填完就提交的情况,这时候若是想要回到原来的表单页面,一般之前填的内容都会消失掉。故使用PHP实现回到原来表单但是填写数据不消失,代码????如下 1<?php if (isset($_POST)) { $name = $_POST['username'] ?? NULL; ...
2016-07-22 01:03:00 143
转载 Mac终端使用swift REPL异常处理方法
Mac终端使用swift REPL异常处理方法终端使用swift命令出现warning: Swift error in module libmarisa.dylibDebug info from this module wi。。。解决方法首先转换目录sudo xcode-select -s /Applications/Xcode-beta.app/Content...
2016-07-22 01:02:00 163
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人