自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 收藏
  • 关注

原创 数据分析岗位可视化分析

2019-03-13 22:21:19 766

原创 Loan Prediction

#Loan Prediction(银行贷款预测分析)项目地址:https://datahack.analyticsvidhya.com/contest/practice-problem-loan-prediction-iii/import pandas as pdimport numpy as npimport matplotlib as plt%matplotlib inlinedf...

2019-03-13 22:18:03 493

原创 NP-complete problems

先介绍下关于这个NP完全问题的一些基本概念:1) P多项式时间内可以被确定型图灵机求解的问题。2) NP一般有两个定义:1. 多项式时间内可以被非确定型图灵机求解的问题;2. 多项式时间内可以通过确定型图灵机验证解的问题;3) NP-hard:比所有的NP问题都难的问题4)NP-complete:满足两点:  1. 是NP hard的

2017-12-31 16:24:19 666

原创 leetcode Decode Ways

Description:A message containing letters from A-Z is being encoded to numbers using the following mapping:'A' -> 1'B' -> 2...'Z' -> 26Given an encoded message containing digits, dete

2017-12-28 15:12:34 135

原创 leetcode Triangle

Description:Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the following triangle[ [2

2017-12-24 20:45:37 126

原创 leetcode Unique Binary Search Trees

Description:Given n, how many structurally unique BST's (binary search trees) that store values 1...n?For example,Given n = 3, there are a total of 5 unique BST's. 1 3 3

2017-12-17 22:09:34 142

原创 leetcode Maximal Rectangle

Description:Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing only 1's and return its area.For example, given the following matrix:1 0 1 0 01 0 1 1 1

2017-12-10 20:04:46 118

原创 leetcode Edit Distance

Description:Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)You have the following 3 operations pe

2017-12-03 22:41:25 126

原创 leetcode Regular Expression Matching

Description:Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of the preceding element.The matching should cov

2017-11-26 22:42:29 119

原创 leetcode Unique Paths && Unique Paths

Desciption:Unique PathsA robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. Th

2017-11-19 21:00:30 133

原创 leetcode Palindrome Partitioning II

Description:Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a palindrome partitioning of s.For example, given 

2017-11-12 11:51:50 120

原创 leetcode Palindrome Partitioning

Description:Given a string s, partition s such that every substring of the partition is a palindrome.Return all possible palindrome partitioning of s.For example, given s = "aab",Return[ [

2017-11-05 16:42:43 110

原创 leetcode Longest Palindromic Substring

Description:Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.Example:Input: "babad"Output: "bab"Note: "aba" is also

2017-10-25 21:09:25 137

原创 leetcode Median of Two Sorted Arrays

Description:There are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).Example

2017-10-21 11:35:17 120

原创 leetcode Longest Substring Without Repeating Characters Description: Given a string, find the leng

Description:Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the length is 3.Given "bbbbb", the answe

2017-10-18 19:51:51 227

原创 leetcode DFS

图的遍历为从图中某一顶点出发访遍图中其余顶点,且使每一个顶点仅被访问一次的过程。

2017-10-07 18:06:12 196

原创 leetcode Symmetric Tree

Description:Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For example, this binary tree [1,2,2,3,4,4,3] is symmetric:    1   / \  2   2 / \

2017-09-26 21:06:17 185

原创 leetcode Maximum Subarray

Description:Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [-2,1,-3,4,-1,2,1,-5,4],the contiguous subarray [

2017-09-18 22:23:02 311

原创 leetcode Majorty Element

Description:Given an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2⌋ times.You may assume that the array is non-empty and the majori

2017-09-14 10:47:39 340

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除