最新 最热

Mysql——查询

查询指定范围内的条件记录,将所有的查询条件用括号括起来。每个条件之间用逗号隔开,只需要满足其中一个条件的值就算做匹配项

2019-05-29
1

Mysql嵌套语句的应用

duan关键词和not exists联合使用我们可以进行判断如果数据库存在则不进行插入,不存在则插入。

2019-04-16
0

再谈文件读写:判断文件的几种方法及其优劣对比

上周,猫猫写了一篇给Python学习者的文件读写指南,跟大家一起详尽地学习了文件读写的基础内容,以及with语句与上下文管理器的进阶知识。

2019-04-10
0

Mongodb在查询某个字段是否存在,执行删除字段,python中排序和创建索引

查询course表中,存在lectures_count字段的记录信息 db.course.find( { “lectures.lectures_count”: { $exists: true } } ) 参数:ture或者false

2019-02-14
1

Leetcode 33 Search in Rotated Sorted Array 二分查找变式

Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). You are given a target value to...

2018-01-12
0

Leetcode 79 Word Search

Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cel...

2018-01-12
0

Leetcode 153 Find Minimum in Rotated Sorted Array

Suppose a sorted array is rotated at some pivot unknown to you beforehand. (i.e., 0 1 2 4 5 6 7 might become 4 5 6 7 0 1 2). Find the minimum element. You ...

2018-01-12
0