leetcode
文章平均质量分 69
bossjuemfc
不想成为CEO的程序员不是好的产品经理。
展开
-
leetcode试题之求矩阵的路线条数
//求一个矩阵中从左上角到右下角的路线条数//使用dp的方法import java.util.*;public class Uniquepath{public static void main(String[] args){ Uniquepath uniquepath = new Uniquepath(); uniquepath.Uniquepath(2,2);}原创 2016-12-07 20:34:34 · 673 阅读 · 0 评论 -
华为校招上机试题之字符串特殊字符过滤
字符串处理:问题描述:把一个字符串中的除了大写字母,小写字母,数字之外的字符过滤掉,输出新的字符串。要求实现该函数:void my_string(char *input,char *output)*/#include #include #include void my_string(char *input,char *output){ //char str_in[100]原创 2017-01-04 13:47:23 · 647 阅读 · 0 评论 -
Leetcode题目之求解数组之间的最大距离
打算从今天开始开辟一个LeetCode专栏,收集并讲解LeetCode网站的一些题目。今天的题目是LeetCode第37期的第一个题目,比较简单。Given m arrays, and each array is sorted in ascending order. Now you can pick up two integers from two different arrays (each原创 2017-06-20 10:23:20 · 1999 阅读 · 0 评论 -
LeetCode试题之““给定一个正整数A,找到最小的正整数B,它的每一个数字的乘法等于A。””
Given a positive integer a, find the smallest positive integer b whose multiplication of each digit equals to a.If there is no answer or the answer is not fit in 32-bit signed integer, then return 0原创 2017-06-20 11:47:02 · 16165 阅读 · 1 评论