240 发简信
IP属地:山东
  • MySQL数据库优化的八种方式

    选取最适用的字段属性,尽可能减少定义字段宽度,尽量把字段设置NOTNULL,例如'省份'、'性别'最好适用ENUM 使用连接(JOIN)来代替子...

  • 14. Longest Common Prefix

    Write a function to find the longest common prefix string amongst an arr...

  • 9. Palindrome Number

    Determine whether an integer is a palindrome. Do this without extra spac...

  • 7. Reverse Integer

    Reverse digits of an integer.Example1: x = 123, return 321Example2: x = ...

  • 1. Two Sum

    问题描述 Given an array of integers, return indices of the two numbers such ...

  • Resize,w 360,h 240
    一周工作学习总结(2017.09.01-2017.09.10)

    面试 一面:电话面试,面了一些Python基础知识,装饰器、迭代器、scrapy框架(公司主要用这个框架来写爬虫,但是我没有用过)、多线程、问会...

  • Resize,w 360,h 240
    Python实现八大排序算法

    常见的八大排序算法,他们之间关系如下: *排序算法.png 比较 稳定性是指如果存在多个具有相同排序码的记录,经过排序后,这些记录的相对次序仍然...

  • Python 函数式编程

    Python 提供 3 种内建函数和 lambda 表达式等来支持函数式编程。 匿名函数 Python 允许用 lambda 关键字创造匿名函数...