摘要:
description: 看给定的数字是否是合法数字 Note: Example: answer: class Solution { public: bool isNumber(string s) { int len = s.size(); int left = 0, right = len 1; 阅读全文
摘要:
description: 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 numbers alo 阅读全文
摘要:
description: Given a linked list, rotate the list to the right by k places, where k is non negative. Note: Example: answer: relative point get√: hint 阅读全文
摘要:
description: 找到全排列中的第k个序列 The set [1,2,3,...,n] contains a total of n! unique permutations. By listing and labeling all of the permutations in order, 阅读全文