码迷,mamicode.com
首页 >  
搜索关键字:error while loading    ( 62470个结果
Codeforces 1516B AGAGA XOOORRR
题目链接: http://codeforces.com/problemset/problem/1516/B 题意 一个含有 n 个非负数的数组,定义某种操作可以把相邻的两个数通过 XOR 合并为一个数,即每次操作后数组的元素个数都会减 1。问是否可以经过若干次这样的操作使得数组中的元素都相等? 思路 ...
分类:其他好文   时间:2021-04-24 13:14:41    阅读次数:0
idea忽略提交
*.classpath;*.gitignore;*.hprof;*.iml;*.pyc;*.pyo;*.rbc;*.settings;*.sh;*.yarb;*~;.DS_Store;*.git;*.hg;*.class;*.original;*.idea;*.lst;*.log;*.jar;.pr ...
分类:其他好文   时间:2021-04-24 13:10:50    阅读次数:0
vue3 自定义 hooks 优雅处理异步调用 ajax
首先自定义一个专门处理异步的 hooks import {reactive, toRefs} from "vue"; const useAsyncFn = (fn)=>{ let data = reactive({value:undefined ,loading:false,err:undefine ...
分类:Web程序   时间:2021-04-24 11:55:00    阅读次数:0
vue 旧项目dev 跑起来报 Module build failed: Error: No PostCSS Config
这只要在src同级添加postcss.config.js文件 同时文件 里面写上这些,重新跑就没问题了 module.exports = { plugins: { 'autoprefixer': {browsers: 'last 5 version'} }} ...
分类:Web程序   时间:2021-04-24 11:47:48    阅读次数:0
PHP获取指定范围内的日期
//php获取指定范围内的日期 function periodDate($startDate, $endDate) { $startTime = strtotime($startDate); $endTime = strtotime($endDate); $arr = []; while ($sta ...
分类:Web程序   时间:2021-04-23 12:27:28    阅读次数:0
多线程售票员卖票问题
要求: 1、 假设现在有一个售票员进行售票,票价为5元,初始状态:票数不限,票售员手中有1张10元钱; 2、 每来一个顾客买票,相当于是创建一个线程,注意,此时顾客共享的资源是售票员及其手中的钱; 3、 当一个顾客到达后相当于创建一个线程,创建该线程时有两个参数,一是线程名,也就是顾客的名字,二是顾 ...
分类:编程语言   时间:2021-04-23 12:20:53    阅读次数:0
【Java笔试】输入输出模板
笔试算法题中,有时候是要自己处理输入,比如从键盘中接收一个数,整理了一些常用的,真正笔试之前可以看一看。 输入 循环输入: Scanner sc = new Scanner(System.in); while (sc.hasNextLine()){ String s = sc.nextLine(); ...
分类:编程语言   时间:2021-04-23 12:06:51    阅读次数:0
linux shell while循环
1、测试1 [root@centos7 test2]# i=0 [root@centos7 test2]# max=5 [root@centos7 test2]# while((i<max));do echo $i;((i++));done 0 1 2 3 4 ...
分类:系统相关   时间:2021-04-23 12:03:54    阅读次数:0
linux娱乐
这里使用的是ubuntu版本 黑客的代码雨 需要安装cmatrix apt-get install cmatrix 然后在终端输入:cmatrix ...
分类:系统相关   时间:2021-04-23 11:58:33    阅读次数:0
L1-063 吃鱼还是吃肉 (10 分)
水题。 int h[]={129,130}; int w[]={25,27}; int main() { int T; cin>>T; while(T--) { int sex,height,weight; cin>>sex>>height>>weight; vector<string> res; ...
分类:其他好文   时间:2021-04-23 11:57:55    阅读次数:0
62470条   上一页 1 ... 75 76 77 78 79 ... 6247 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!