自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Paper list of Time-series Forecasting with Deep Learning

Paper list of Time-series Forecasting with Deep Learning RNN-LSTM Deep and Confident Prediction for Time Series at Uber DeepAR_Probabilistic Forecasting with Autoregressive Recurrent Networks R2N...

2018-06-19 10:57:16 1409

原创 20. Valid Parentheses

题目Given a string containing just the characters ‘(‘, ‘)’, ‘{‘, ‘}’, ‘[’ and ‘]’, determine if the input string is valid. An input string is valid if: Open brackets must be closed by the same type of

2018-04-13 14:46:46 217

原创 14. Longest Common Prefix

题目Write a function to find the longest common prefix string amongst an array of strings. 即找出输入字符串数组中的最长公共前缀。如: 输入:[‘abc’,’abd’,’abe’] 输出:’ab’思路对数组中各字符串的每一位进行对比解法 1class Solution: def longestComm

2018-04-13 11:02:07 247

原创 13. Roman to integer

题目Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 即将输入的罗马数字转换成十进制阿拉伯数字。 罗马数字的规律是: 左边数字如果小于右边数字的话,用右边数字减去左边数字;如果左边数字大于右边数字则执行加法。 如IV是5-1=4

2018-04-12 10:33:28 207

原创 9. Palindrome Number

题目Determine whether an integer is a palindrome. Do this without extra space。 判断输入的整数是否为回文数,即正读反读都一样的数。输出为布尔值。解法 1class Solution: def isPalindrome(self, x): """ :type x: int

2018-04-11 14:29:14 183

原创 7. Reverse Integer

题目:Given a 32-bit signed integer, reverse digits of an integer. Example 1: Input: 123 Output: 321 Example 2: Input: -123 Output: -321 Example 3: Input: 120 Output: 21 Note: Assume we are de

2018-04-11 13:24:12 154

原创 1.two_sum题目

Leetcode上two sum题目的python练习

2018-04-10 23:14:26 192

原创 排序题

CodeWars上的排序题Your task is to make a function that can take any non-negative integer as a argument and return it with its digits in descending order.Essentially, rearrange the digits to create the high...

2018-04-09 20:06:03 457

原创 IQ Test

CodeWars上的IQ Test题目Bob is preparing to pass IQ test. The most frequent task in this test is to find out which one of the given numbers differs from the others. Bob observed that one number usually dif...

2018-04-09 20:03:31 869

原创 英文论文中的时态

Abstract研究背景:过去式主要研究活动:过去式,过去完成式研究方法:过去式结果:过去式结论:现在式,助动词,不确定语气Introduction陈述事实:现在式一般性陈述,不特别指明:现在完成式某位作者曾说过,citation放句末:过去完成式指明研究,citation放主语后:过去式现有工作集中于……,但在……缺乏研究:现在式,现在完成式Aims研究目的是……:过去式Methods本文进行了…

2017-12-10 19:48:25 4292

原创 Paper list of Imbalanced Time-series Classification with Deep Learning

把前段时间看的文献整理了一下,主要是关于利用深度学习,时间序列,不平衡分类的相关研究工作

2017-11-02 19:13:17 1537 2

空空如也

空空如也

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

TA关注的人

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