
geekforgeek
文章平均质量分 75
673556617-real
leetcode java angular golang 分布式
展开
-
Count ways to N'th Stair(Order does not matter)
There are n stairs, a person standing at the bottom wants to reach the top. The person can climb either 1 stair or 2 stairs at a time. Count the number of ways, the person can reach the top (order doe原创 2017-01-16 05:45:25 · 746 阅读 · 0 评论 -
Unique BST's
Given an interger N, how many structurally unique binary search trees are there that store values 1...N? For example, for N = 2, there are 2 unique BSTs 1 2原创 2017-01-16 06:07:16 · 471 阅读 · 0 评论 -
Reach a given score
Consider a game where a player can score 3 or 5 or 10 points in a move. Given a total score n, find number of distinct combinations to reach the given score. Input: The first line of input con原创 2017-01-16 06:29:10 · 610 阅读 · 0 评论 -
Path in Matrix
Given a N X N matrix Matrix[N][N] of positive integers. There are only three possible moves from a cell Matrix[r][c]. 1. Matrix[r+1][c] 2. Matrix[r+1][c-1] 3. Matrix[r+1][c+1] Starting f原创 2017-01-18 04:23:36 · 424 阅读 · 0 评论