码迷,mamicode.com
首页 >  
搜索关键字:sel    ( 12804个结果
Leetcode:3-Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters. Examples: Given "abcabcbb", the answer is "abc", which the leng ...
分类:其他好文   时间:2017-12-14 11:58:16    阅读次数:91
selenium webdriver使用一二三
本文仅汇总了windows平台做UI自动化测试,常用的三大浏览器webdriver:Chrome、FireFox、IE。 Chrome 1.ChromeDriver 下载地址 http://chromedriver.storage.googleapis.com/index.html 2.Chrome ...
分类:Web程序   时间:2017-12-14 04:16:54    阅读次数:222
Python 解LeetCode:33. Search in Rotated Sorted Array
题目描述:在一个旋转数组中查找给定的值,其中旋转数组中不含重复值; 思路: 1. 第一遍二分遍历,找到数组中最小值的索引; 2. 第二遍分别对最小值左右两边的数组进行二分查找; python class Solution(object): def find_min(self, nums): if n ...
分类:编程语言   时间:2017-12-14 04:10:55    阅读次数:173
在 myeclipse中进行连接sql server的测试
在 myeclipse中,连接 sql server 用的 url connection 与 java 代码 连接的 url值完全相同。 (一下为 java的jdbc连接 sql server 成功的代码片段) ...
分类:数据库   时间:2017-12-14 03:15:34    阅读次数:233
leetcode:2-Add Two Numbers
You are given two non-empty linked lists representing two non-negative integers. The digits are stored in reverse order and each of their nodes contai ...
分类:其他好文   时间:2017-12-14 00:01:15    阅读次数:136
SDN第三次上机作业
SDN第三次上机作业 ==== 实验目的 在给定如上实验拓扑情况下,用vlan得到下列虚拟网段 h1 h4互通 h2 h5互通 h3 h6互通 其余主机间无法通信 实验步骤 1、创建以下拓扑(可采用任意方式) 下图为拓扑结果 2、利用OVS命令下发流表,实现VLAN功能 s1流表命令: s2流表命令 ...
分类:其他好文   时间:2017-12-13 23:46:58    阅读次数:210
行列转换
select 姓名 as 姓名 , max(case 课程 when '语文' then 分数 else 0 end) 语文, max(case 课程 when '数学' then 分数 else 0 end) 数学, max(case 课程 when '物理' then 分数 else 0 end ...
分类:其他好文   时间:2017-12-13 23:19:07    阅读次数:117
76、django之内置Admin
本篇导航: 配置路由 定制Admin Django内置的Admin是对于model中对应的数据表进行增删改查提供的组件,使用方式有: 依赖APP: django.contrib.auth django.contrib.contenttypes django.contrib.messages djan ...
分类:其他好文   时间:2017-12-13 20:39:33    阅读次数:199
介绍nodejs中的path模块的几个方法
webpack中常用的: var path = require('path') 是nodejs中的path模块,介绍一下webpack中常用的几个path模块的方法: 应用node环境的时候,这个path模块的方法经常被用到,处理路径的方法。 Nodejs的path模块介绍: 网址:http://n ...
分类:Web程序   时间:2017-12-13 19:57:56    阅读次数:224
CROSS JOIN
原文:CROSS JOIN最近在讲到T-SQL查询的Join部分时,一下子没有想起来CROSS JOIN的用法,因为其实平常也确实基本不用到。特意找了一个例子,以供参考 CROSS JOIN又称为笛卡尔乘积,实际上是把两个表乘起来。以下资料摘自:http://www.sqlguides.com/sq... ...
分类:其他好文   时间:2017-12-13 15:03:19    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!