摘要: A robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can only move either down or right at any point ... 阅读全文
posted @ 2014-12-05 14:24 ElephantKing 阅读(87) 评论(0) 推荐(0) 编辑
摘要: class Solution {public: int min(int a, int b) { return a>b?b:a; } int getMin(vector > grid, int m, int n) { int current =... 阅读全文
posted @ 2014-12-05 14:20 ElephantKing 阅读(132) 评论(0) 推荐(0) 编辑