码迷,mamicode.com
首页 >  
搜索关键字:global variables    ( 9983个结果
第一个webapi及swagger
目的:实现api并生成swagger文档 引入swagger 在pom.xml添加swagger依赖 <!--整合Swagger2配置类--> <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</a ...
分类:Windows程序   时间:2020-06-20 16:35:33    阅读次数:81
计算目录大小
import os,os.path directory = input('请输入目录或者文件地址:') def getSzie(path): global size size = 0 if os.path.isfile(path): size1 = os.path.getsize(path) siz ...
分类:其他好文   时间:2020-06-20 16:31:27    阅读次数:57
mac下 已经配置gitlab的ssh,但idea拉取项目扔需要输密码
一、先配好ssh公钥 mac下,配置本地的公钥到ssh过程大概说下: 1.配置账户 git config --global user.name "account name" ->用户名,建议拼音或英文 git config --global user.email "account email" -> ...
分类:系统相关   时间:2020-06-20 14:26:28    阅读次数:212
AtCoder Beginner Contest 170题解
A - Five Variables 找出哪个位置是0。 #include <iostream> #include <cstdio> using namespace std; int a[5]; int main() { for (int i = 0; i < 5; i++) { cin >> a[ ...
分类:其他好文   时间:2020-06-20 00:55:41    阅读次数:70
Codeforces Global Round 8
传送门 视频题解 先填坑,详细题解晚上晚些时候再补。先附上代码。 A. C+= /* * Author: heyuhhh * Created Time: 2020/6/18 22:46:31 */ #include <iostream> #include <algorithm> #include < ...
分类:其他好文   时间:2020-06-19 21:11:24    阅读次数:48
git 常用命令
配置用户信息 git config --global user.name 'xxxx' git config --global user.email 'sfasd@ksyun.com' 下载(拉取)代码库 git clone git@github.com:账号名/项目名.git 与远程交互 从远程库 ...
分类:其他好文   时间:2020-06-19 21:11:11    阅读次数:62
X++ StrFix方法
Global类里提供了两个方法strRFix和strLRfix,方法的实现如下: 1 static str strRFix(str _str, int _length, char _char = ' ') 2 { 3 return strRep(_char, _length - strLen(_st ...
分类:其他好文   时间:2020-06-19 15:54:42    阅读次数:53
vue部署
首先安装 nodejs和npm 原文 切换淘宝镜像 npm config set registry https://registry.npm.taobao.org --global npm config set disturl https://npm.taobao.org/dist --global ...
分类:其他好文   时间:2020-06-19 12:16:37    阅读次数:40
Codeforces Global Round 8 A. C+=(贪心)
题目链接:https://codeforces.com/contest/1368/problem/A 题意 给出 $a,b$,只可以使用 '+=' 运算符,问至少要使用多少次使得 $a$ 或 $b$ 大于 $n$ 。($1 \le a,b \le n \le 10^9$) 题解 每次让较小的数加上较 ...
分类:其他好文   时间:2020-06-19 11:52:04    阅读次数:44
Codeforces Global Round 8 D. AND, OR and square sum(位运算)
题目链接:https://codeforces.com/contest/1368/problem/D 题意 给出一个大小为 $n$ 的数组 $a$,每次可以选两个下标不同的元素,一个赋为二者相与的值,同时一个赋为二者相或的值,计算 $\sum_{i=1}^n a_i^2$ 的最大值。 题解 即重新分 ...
分类:其他好文   时间:2020-06-19 10:37:59    阅读次数:66
9983条   上一页 1 ... 44 45 46 47 48 ... 999 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!