题目描述: 描述中文EnglishWrite a function that add two numbers A and B. There is no need to read data from standard input stream. Both parameters are given in ...
分类:
其他好文 时间:
2019-05-29 23:53:32
阅读次数:
325
Problem Description Give you two numbers A and B, if A is equal to B, you should print "YES", or print "NO". Input each test case contains two numbers ...
分类:
编程语言 时间:
2019-05-27 13:24:21
阅读次数:
125
Igor and Interesting Numbers 枚举每一位, 用dp去算方案数。 ...
分类:
其他好文 时间:
2019-05-27 13:15:41
阅读次数:
87
64. Minimum Path Sum Given a m x n grid filled with non negative numbers, find a path from top left to bottom right which minimizes the sum of all num ...
分类:
其他好文 时间:
2019-05-26 16:14:38
阅读次数:
90
Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representation and r ...
分类:
其他好文 时间:
2019-05-24 14:13:34
阅读次数:
85
128. Longest Consecutive Sequence Given an unsorted array of integers, find the length of the longest consecutive elements sequence. Your algorithm sh ...
分类:
Web程序 时间:
2019-05-24 00:58:51
阅读次数:
143
在TCP/IP协议中,TCP协议提供可靠的连接服务,采用三次握手建立一个连接.第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SEND状态,等待服务器确认; SYN:同步序列编号(Synchronize Sequence Numbers)第二次握手:服务器收到syn包 ...
分类:
其他好文 时间:
2019-05-23 23:06:02
阅读次数:
168
Question 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 woul ...
分类:
其他好文 时间:
2019-05-23 19:38:44
阅读次数:
114
#include <stdio.h>int main(){ int a[10]; int i,j,k; printf("input 10 numbers :\n"); for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for(j=0;j<10;j+ ...
分类:
其他好文 时间:
2019-05-23 15:49:37
阅读次数:
114
1. #include <stdio.h>int main(){ int a[10]; int i,j,k; printf("input 10 numbers :\n"); for(i=0;i<10;i++) scanf("%d",&a[i]); printf("\n"); for(j=0;j<10 ...
分类:
其他好文 时间:
2019-05-23 15:42:35
阅读次数:
112