最新 最热

The demo for current work

Our dream is creating a safe driving system working well under all circumstance, for this purpose, a more intelligent agent is needed. We want to create a mind,...

2019-04-28
1

【每天一道编程系列-2018.3.14】—— Trailing Zeros

Write an algorithm which computes the number of trailing zeros in n factorial.

2019-03-14
1

interval间隔分区STORE IN参数的作用范围

11g推出了interval间隔分区,以往的分区是需要手工或半自动化脚本实现分区扩展,但这种间隔分区的出现,将分区扩展的工作彻底解放出来,这里不讨论何为间隔分区,主要说一下创建间隔分区有一个STORE IN参数,官方文旦对其的介绍...

2019-01-29
1

leetcode 生成杨辉三角形, 118 119 Pascal's Triangle 1,2

Given numRows, generate the first numRows of Pascal's triangle.

2019-01-18
1

数学趣题_父亲分羊

有个老父亲,有17头羊,临终前把三个儿子叫来。分给大儿子一半的羊,二儿子1/3的羊,小儿子1/9的羊。三个儿子不知道怎么分,只好请教邻居。聪明的邻居借给了他们一头羊,这样总共就有18头。大儿子领走一半9头羊,二儿子领走1/3共6...

2018-12-27
0

【吉比特】G-bits2017技术类岗位编程题

求素数输入M、N,1 < M < N < 1000000,求区间[M,N]内的所有素数的个数。素数定义:除了1以外,只能被1和自己整除的自然数称为素数输入描述:两个整数M,N输出描述:区间内素数的个数示例1输入2 10输出4#include<iostream>#defin...

2018-06-04
0

leetcode-458-Poor Pigs

题目描述:There are 1000 buckets, one and only one of them contains poison, the rest are filled with water. They all look the same. If a pig drinks that poison it w...

2018-05-21
1

程序员进阶之算法练习(十八)

前言最近在接触新知识,也是选择2017年的方向。 其他文集更新会放缓,没有学习就没有心得,肚中无墨就无从下笔。 但是算法练习还是挺好玩的,欢迎关注algorithm文集。正文A. Bus to Udayland 题目链接 题目大意: 输入n行字符,...

2018-04-27
0

Leetcode 34 Search for a Range

Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O...

2018-01-12
1

Leetcode 41 First Missing Positive 正解不是盛传的桶排序

Given an unsorted integer array, find the first missing positive integer. For example, Given [1,2,0] return 3, and [3,4,-1,1] return 2. Your algorithm shou...

2018-01-12
0