240 发简信
IP属地:华盛顿州
  • Attention Pooling-based Convolutional Neural Network for Sentence Modeling

    author: Yong Zhang, Ph.D.institution: Nanyang Technological Universityem...

  • Connect database through odbc driver with python

    运行环境 Mac OS 10.12.6python 3.6.2pip 9.0.1 安装步骤 下载所需odbc driver。由于笔者安装ODBC...

  • tensorflow from source

    环境:Mac OS EI Captain.显卡:Intel Iris Graphics 6100 1536 MB (是的,就是不能GPU加速了:...

  • Factorial Trailing Zeroes阶乘尾零

    Easy 给定整数n, 返回n!的尾零的数目。复杂度控制在O(logN)。 n!的尾零主要有5*2造成,因子为2的数很多,所以只需要知道从1到n...

  • Excel Sheet Column Title Excel表单列头

    Easy 给定正整数,返回其在excel表单中对应的列头。 For example:1 -> A2 -> B3 -> C...26 -> Z27...

  • climbing stairs爬楼梯

    Easy, Dynamic Programming 楼梯有n阶,一次可爬一阶或两阶。有多少种爬梯方式。 典型的DP问题,考虑最后两梯,只能有两种...

  • Unique Paths

    Medium, Dynamic Programming Question 一个机器人在mxn的矩阵的左上角,想要移动到右下角,它只能向右或者向下...

  • Remove Linked List Elements去除链列元素

    Easy 去除链列中值为val的元素 ExampleGiven: 1 --> 2 --> 6 --> 3 --> 4 --> 5 --> 6, ...

  • Two sum II 二值和2

    Easy, Array/String 给定升序排列的整数列,寻找两数加起来等于目标值。你的函数应当返回两数的位置(1-based)。假设只有一个...