码迷,mamicode.com
首页 >  
搜索关键字:median of two sor    ( 12209个结果
CF1140C.Playlist
C. PlaylistYou have a playlist consisting of n songs. The i-th song is characterized by two numbers ti and bi — its length and beauty respectively. Th ...
分类:其他好文   时间:2019-03-27 21:05:29    阅读次数:173
[论文理解]Focal Loss for Dense Object Detection(Retina Net)
Focal Loss for Dense Object Detection Intro 这又是一篇与何凯明大神有关的作品,文章主要解决了one stage网络识别率普遍低于two stage网络的问题,其指出其根本原因是样本类别不均衡导致,一针见血,通过改变传统的loss(CE)变为focal lo ...
分类:Web程序   时间:2019-03-26 21:19:53    阅读次数:275
1. Two Sum
/** * 1. Two Sum * https://leetcode.com/problems/two-sum/description/ * Given an array of integers, return indices of the two numbers such that they a... ...
分类:其他好文   时间:2019-03-26 21:18:22    阅读次数:178
[Git] Undo my last commit and split it into two separate ones
When you accidentally committed some changes to your branch you have various possibilities to “undo” that operation and add some more changes. One is ...
分类:其他好文   时间:2019-03-26 21:15:35    阅读次数:158
dataProvider数据获取存储数据库
实体报告类CREATETABLE`testngreport_two`(`id`int(11)NOTNULLAUTO_INCREMENTCOMMENT‘编号‘,`uuid`varchar(100)NOTNULLCOMMENT‘编号‘,`passed`varchar(255)DEFAULTNULLCOMMENT‘通过‘,`failed`varchar(255)DEFAULTNULLCOMMENT‘失败
分类:数据库   时间:2019-03-24 23:23:59    阅读次数:223
【leetcode】572. Subtree of Another Tree
题目如下: Given two non-empty binary trees s and t, check whether tree t has exactly the same structure and node values with a subtree of s. A subtree of  ...
分类:其他好文   时间:2019-03-23 22:47:38    阅读次数:151
Leetcode 617. Merge Two Binary Trees
import functools class Solution(object): @functools.lru_cache() def mergeTrees(self, t1, t2): if t1 and t2: root = TreeNode(t1.val + t2.val) root.left... ...
分类:其他好文   时间:2019-03-23 18:39:18    阅读次数:129
(栈)leetcode 946. Validate Stack Sequences
Given two sequences pushed and popped with distinct values, return true if and only if this could have been the result of a sequence of push and pop o ...
分类:其他好文   时间:2019-03-23 10:33:46    阅读次数:233
[Algorithm] Reverse a linked list
It helps to understands how recursive calls works. So for our 'helper' function, when calling it, it stop there until when reach the end. one | two | ...
分类:其他好文   时间:2019-03-22 00:32:06    阅读次数:118
LeetCode-242.Valid Anagram
Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Example 2: Note:You may assume the string contains only ...
分类:其他好文   时间:2019-03-21 21:41:27    阅读次数:165
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!