环境搭建 big data env setup 读写ES spark 怎么读写 elasticsearch Spark 上time series 处理 Flint by Two Sigma ...
分类:
其他好文 时间:
2020-02-06 14:39:30
阅读次数:
66
给两个已经排序好的数组A,B,和一个常数k, 找i,j使得 Ai + Bj - k 的绝对值最小 分析: Two pointer, i从A从前往后扫,j从B从后往前扫.if (A[i]+B[j] > k){ j--;}else { i++;}整个过程不断更新答案 ...
分类:
其他好文 时间:
2020-02-06 12:27:56
阅读次数:
53
Given two binary search trees root1 and root2. Return a list containing all the integers from both trees sorted in ascending order. Example 1: Input: ...
分类:
其他好文 时间:
2020-02-06 10:51:59
阅读次数:
43
Given a matrix of M x N elements (M rows, N columns), return all elements of the matrix in diagonal order as shown in the below image. Example: Input: ...
分类:
其他好文 时间:
2020-02-06 10:46:38
阅读次数:
71
排序。更naive的方法是用set。 class Solution: def intersection(self, nums1: List[int], nums2: List[int]) -> List[int]: result = [] nums1.sort() nums2.sort() i = ...
分类:
其他好文 时间:
2020-02-06 10:44:04
阅读次数:
47
Problem: time series classification shapelet-based method: two issues 1. for multi-class imbalanced classification tasks, these methods will ignore th ...
分类:
Web程序 时间:
2020-02-06 01:44:11
阅读次数:
127
https://leetcode-cn.com/problems/add-two-numbers/ ListNode root = new ListNode(0); ListNode cur = root; int retain = 0; while (l1!=null || l2!=null || ...
分类:
其他好文 时间:
2020-02-05 20:18:39
阅读次数:
70
int [] two_num(int [] nums,int target){ HashMap<Integer, Integer> num_indx = new HashMap<Integer, Integer>(); int [] ans = new int [2]; for(int i=0;i< ...
分类:
其他好文 时间:
2020-02-05 18:42:01
阅读次数:
60
需要用到一个PageBean对象来实现 1.PageBean包含的属性 * totalCount 数据库中的总条目数 * rows 每页显示的行数 * totalPage 总分页数 通过该表达式来确定 totalPage = (totalCount%rows == 0)?totalCount/row ...
分类:
编程语言 时间:
2020-02-05 16:29:42
阅读次数:
89
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:
其他好文 时间:
2020-02-05 13:35:52
阅读次数:
62