leetcode LeetCode is the best platform to help you enhance your skills, expand your knowledge and prepare for technical interviews. https://leetcode.com/ https://leetcode-cn.com/ LeetCode - The World's Leading Online Programming Learning Platform Lin…
Neural Task Programming: Learning to Generalize Across Hierarchical Tasks…
Today when taking a bath I got a good idea that it is an efficient and interesting way to learn a new programming language: (These days I learn Python from the Python manual and feel a little bored....) Learn programming by trying some little or larg…
一. Longest Valid Parentheses 方法一.一维DP class Solution { public: int longestValidParentheses(string s) { vector<); ; ;i>=;i--) { if(s[i]==')') dp[i]=; else { ]+; if(j<s.size()&&s[j]==')') { dp[i]+=dp[i+]+; <s.size()) dp[i]+=dp[j+]; } } r…
一. 1. Edit Distance class Solution { public: int minDistance(string t1,string t2) { int len1=t1.size(),len2=t2.size(); vector<vector<,vector<,)); ;i<=len1;i++) dp[i][]=i; ;i<=len2;i++) dp[][i]=i; ;i<=len1;i++) { ;j<=len2;j++) { dp[i][…
1. Triangle class Solution { public: int minimumTotal(vector<vector<int> > &triangle) { int n=triangle.size(); int* res=new int[n]; ;i<n;i++) res[i]=triangle[n-][i]; ;i>=;i--) { ;j<=i;j++) { res[j]=triangle[i][j]+std::min(res[j],r…
前端比较流行的 UI 框架 目前前端用的比较多的框架有如下几个 Ant Design:Ant Design - 一套企业级 UI 设计语言和 React 组件库  Mint UI:https://mint-ui.github.io/#!/zh-cn WeUI:WeUI . iView UI:A high quality UI Toolkit based on Vue.js cube-ui:https://didi.github.io/cube-ui/#/zh-CN Layui:Layui - 经…
最近在学深度学习相关的东西,在网上搜集到了一些不错的资料,现在汇总一下: Free Online Books  by Yoshua Bengio, Ian Goodfellow and Aaron Courville Neural Networks and Deep Learning42 by Michael Nielsen Deep Learning27 by Microsoft Research Deep Learning Tutorial23 by LISA lab, University…
##机器学习(Machine Learning)&深度学习(Deep Learning)资料(Chapter 2)---#####注:机器学习资料[篇目一](https://github.com/ty4z2008/Qix/blob/master/dl.md)共500条,[篇目二](https://github.com/ty4z2008/Qix/blob/master/dl2.md)开始更新------#####希望转载的朋友**一定要保留原文链接**,因为这个项目还在继续也在不定期更新.希望看到…
Awesome Deep Learning  Table of Contents Free Online Books Courses Videos and Lectures Papers Tutorials Researchers WebSites Datasets Frameworks Miscellaneous Contributing Free Online Books Deep Learning by Yoshua Bengio, Ian Goodfellow and Aaron Cou…