原创 二月寒假計劃

1、深度學習 書籍 a. python深度學習 b.機器學習實戰基於Sklearn和TensorFlow c.花書 d.統計學習方法 論文 a.RNN b.Resnet c.Cliquenet d.CBAM(代碼復現) 實踐 ke

原创 Leetcode015. 3sum

題目 原題鏈接:https://leetcode.com/problems/3sum 題目內容: Given an array nums of n integers, are there elements a, b, c in

原创 Leetcode215. 數組中的第K個最大元素

執行用時 : 76 ms 內存消耗 : 12.1 MB class Solution(object): def findKthLargest(self, nums, k): """ :type

原创 169.衆數

class Solution(object): def majorityElement(self, nums): """ :type nums: List[int] :rtype

原创 LeetCode-weekly-contest-134. Moving Stones Until Consecutive

題目內容 原題鏈接:https://leetcode-cn.com/contest/weekly-contest-134/problems/moving-stones-until-consecutive/ 題目內容 三枚石子放置在數

原创 LeetCode1035. 不相交的線

class Solution(object): def maxUncrossedLines(self, A, B): “”" :type A: List[int] :type B: List[int] :rtype: int “”"

原创 Leetcode42.接雨水

class Solution { public: int trap(vector& heights) { vector left, right; int length = heights.size(); // left[0]=heig

原创 Leetcode27.Remove Element

27.Remove Element 題目 原題鏈接:https://leetcode.com/problems/remove-element/ 題目內容: Given an array nums and a value

原创 015.三數之和

class Solution { public: vector<vector<int>> threeSum(vector<int>& nums) { vector<vector<int>> ret;

原创 LeetCode2. Add Two Numbers

題目介紹 原題鏈接:https://leetcode-cn.com/problems/add-two-numbers You are given two non-empty linked lists representing two

原创 111. Minimum Depth of Binary Tree

題目描述 Given a binary tree, find its minimum depth. The minimum depth is the number of nodes along the shortest path f

原创 劍指offer_跳臺階

題目描述 一隻青蛙一次可以跳上1級臺階,也可以跳上2級。求該青蛙跳上一個n級的臺階總共有多少種跳法(先後次序不同算不同的結果)。 原題鏈接:https://www.nowcoder.com/practice/8c82a5b803784

原创 Leetcode 102. Binary Tree Level Order Traversal

題目描述 題目鏈接:https://leetcode-cn.com/problems/binary-tree-level-order-traversal/ 給定一個二叉樹,返回其按層次遍歷的節點值。 (即逐層地,從左到右訪問所有節點)

原创 LeetCode104. Maximum Depth of Binary Tree

題目 原題鏈接 https://leetcode.com/problems/maximum-depth-of-binary-tree/ Given a binary tree, find its maximum depth. Th

原创 udacity 深度學習課程實戰項目之預測共享單車的使用情況

題目 知識點 1、pd.get_dummies pandas.get_dummies(data, prefix=None, prefix_sep=’_’, dummy_na=False, columns=None, sparse=F