码迷,mamicode.com
首页 >  
搜索关键字:no executable code    ( 109276个结果
网易云外链接生成方法
网易云外链接生成方法 1. 打开网易云找到一首歌 2. 找到这首歌的id 3. 将id替换到这个url上http://music.163.com/song/media/outer/url?id= .mp3 4. 点击这条链接就可以直接获得一个纯mp3网页 ...
分类:其他好文   时间:2021-02-24 13:14:52    阅读次数:0
2.爱生气的书店老板
爱生气的书店老板 解题思路,首先计算不算X的所有满意的客户数量。然后计算X时间可能产生的最大的客户满意数量,即使用滑动窗口的方式,从左往右,找出最大的值,加上之前的值即可。代码如下 class Solution { /** * @param Integer[] $customers * @param ...
分类:其他好文   时间:2021-02-24 13:11:48    阅读次数:0
ads_new_mid_count
insert into table ads_new_mid_count select '2020-03-12', count(*) from dwt_uv_topic where login_date_first='2020-03-12' group by login_date_first; ...
分类:其他好文   时间:2021-02-24 13:05:56    阅读次数:0
JS严格模式
Strict Mode严格模式 1.不是用var声明的变量,在严格模式下不被通过 2.带有"eval"的操作都被禁止 <script> "use strict" 全局 globalVal=100; 会报错 var globalVal=100; 不会 var eval=100; console.log ...
分类:Web程序   时间:2021-02-24 13:05:15    阅读次数:0
Vue CLI + Element 搭建项目
1.检查Vue CLI安装 (详情可查看:官方地址https://cli.vuejs.org/) 查看版本 $ vue -V 2.创建一个项目 vue create hello-world 选择Default ([Vue 2] babel, eslint),因为element现阶段还不支持Vue3 ...
分类:其他好文   时间:2021-02-24 13:02:52    阅读次数:0
[CF1375F] Integer Game
\(\text{Problem}:\)题目链接 \(\text{Solution}:\) 记一个状态为有序三元组 \((x,y,z)\)。 当 \(x<y<z\) 时,考虑先手一步必胜的情况:当 \(z-y=y-x\) 且后手上一步选了 \(z\) 时,先手给定 \(z-y\) 这个数。 当 \(x ...
分类:其他好文   时间:2021-02-24 13:02:04    阅读次数:0
Codeforces Round #702 (Div. 3)G(二分,模拟stl)
https://codeforces.com/contest/1490/problem/G 二分循环几轮,再二分哪个位置刚好够。 1 #define IO std::ios::sync_with_stdio(0),cin.tie(0),cout.tie(0); 2 #define bug(x) co ...
分类:其他好文   时间:2021-02-24 13:01:05    阅读次数:0
idea 安装 Vue 插件后新建文件不显示 Vue Component 的问题及解决方法
关于 idea 安装 Vue 插件后新建文件不显示 Vue Component 的问题及解决方法 原文链接:https://www.pianshen.com/article/79311284017/ 1.点击 file 打开设置 settings,展开 Editor 找到 file and code ...
分类:其他好文   时间:2021-02-24 12:52:44    阅读次数:0
5:to do list
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv ...
分类:其他好文   时间:2021-02-23 14:31:40    阅读次数:0
修改/etc/vsftpd/vsftpd.conf配置文件后FTP罢工
配置匿名FTP服务器在修改完/etc/vsftpd/vsftpd.conf文件后restart出现error Job for vsftpd.service failed because the control process exited with error code. See "systemct... ...
分类:其他好文   时间:2021-02-23 14:23:37    阅读次数:0
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!