上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 72 下一页
摘要: Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target. 阅读全文
posted @ 2019-03-12 15:46 乐乐章 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 216. 组合总和 III labuladong 题解 难度中等 683 找出所有相加之和为 n 的 k 个数的组合,且满足下列条件: 只使用数字1到9 每个数字 最多使用一次 返回 所有可能的有效组合的列表 。该列表不能包含相同的组合两次,组合可以以任何顺序返回。 示例 1: 输入: k = 3, 阅读全文
posted @ 2019-03-12 11:56 乐乐章 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 服务器上找到frps.ini 配置如下 [common] bind_port = 7000 vhost_http_port = 8890 要穿透的笔记本的frpc.ini配置 [common] server_addr = 公网ip server_port = 7000 # 这个是设置ssh的,外网可 阅读全文
posted @ 2019-03-07 17:47 乐乐章 阅读(1378) 评论(0) 推荐(0) 编辑
摘要: 应用场景:机器翻译 与language model 不同 MT model 的a<0> 是由encoder 生成的。 language model 的 a<0> 是 初始化的。 greedy search 为什么不用 greedy search ? Beam Search B=3 的意思是,每次gr 阅读全文
posted @ 2019-03-07 15:17 乐乐章 阅读(498) 评论(2) 推荐(0) 编辑
摘要: ABSTRACT In this paper, we propose a novel Deep Reinforcement Learning framework for news recommendation . Therefore, to address the aforementioned ch 阅读全文
posted @ 2019-03-05 20:42 乐乐章 阅读(583) 评论(0) 推荐(0) 编辑
摘要: 摘要 新闻推荐系统中,新闻具有很强的动态特征(dynamic nature of news features),目前一些模型已经考虑到了动态特征。 一:他们只处理了当前的奖励(ctr);、 二:有一些模型利用了用户的反馈,如用户返回的频率。(user feedback other than clic 阅读全文
posted @ 2019-03-05 13:27 乐乐章 阅读(2507) 评论(0) 推荐(0) 编辑
摘要: Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lower right corner (row2 阅读全文
posted @ 2019-03-03 18:03 乐乐章 阅读(331) 评论(0) 推荐(0) 编辑
摘要: Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. Example: Given nums = [-2, 0, 3, -5, 2, -1] sumR 阅读全文
posted @ 2019-03-03 17:18 乐乐章 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. Example 1: Input: n = 12 O 阅读全文
posted @ 2019-02-27 22:39 乐乐章 阅读(238) 评论(0) 推荐(0) 编辑
摘要: Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and return its area. Example: Input: 1 0 1 0 0 1 0 1 1 1 阅读全文
posted @ 2019-02-26 20:08 乐乐章 阅读(110) 评论(0) 推荐(0) 编辑
上一页 1 ··· 20 21 22 23 24 25 26 27 28 ··· 72 下一页