240 发简信
IP属地:香港
  • Strench

    想做太多太多的事情了想学各种喜欢的东西想学日语想学西餐想出国旅游想念研究生想学法律的知识想努力挣钱想每年过年带着父母在国外旅行过年想养一直猫 最...

  • python装饰器的理解

    python装饰器应该算是面试常考到的用点,之前在flask的应用中也是会常常用到,抽空仔细看书查资料理解了下装饰器的概念,通过自己的理解记忆,...

  • Subsets

    Given a set of distinct integers, nums, return all possible subsets. Not...

  • Fizz Buzz

    Write a program that outputs the string representation of numbers from 1...

  • 位运算

    参考:位运算技巧 位运算的使用 1.and运算and运算通常用于二进制取位操作,例如一个数and1的结果就是取二进制的最末位。2.or运算or运...

  • Hamming Distance

    The Hamming distance between two integers is the number of positions at ...

  • Given a binary tree, find its maximum depth.

    Given a binary tree, find its maximum depth. The maximum depth is the nu...

  • Remove Duplicates from Sorted Array

    Remove Duplicates from Sorted Array Given a sorted array, remove the dup...

  • 深浅拷贝

    深浅拷贝拷贝的例子,还是自己复习归纳一遍比较好,虽然很久之前C++以及JAVA都有学习到,这里就用最近常用的Python来理解一遍吧。浅拷贝,就...