- 博客(19)
- 收藏
- 关注
原创 Loan Prediction
#Loan Prediction(银行贷款预测分析) 项目地址:https://datahack.analyticsvidhya.com/contest/practice-problem-loan-prediction-iii/ import pandas as pd import numpy as np import matplotlib as plt %matplotlib inline df...
2019-03-13 22:18:03
589
原创 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
804
原创 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' -> 26 Given an encoded message containing digits, dete
2017-12-28 15:12:34
181
原创 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
173
原创 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
182
原创 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 0 1 0 1 1 1
2017-12-10 20:04:46
167
原创 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
165
原创 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
162
原创 leetcode Unique Paths && Unique Paths
Desciption: Unique Paths A 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
223
原创 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
151
原创 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
158
原创 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
175
原创 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
161
原创 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
289
原创 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
229
原创 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
389
原创 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
395
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅