摘要:
leetcode - Isomorphic StringsGiven two strings s and t, determine if they are isomorphic.Two strings are isomorphic if the characters in s can be repl... 阅读全文
摘要:
leetcode -house-robberhttps://leetcode.com/problems/house-robber/Q:You are a professional robber planning to rob houses along a street. Each house has... 阅读全文
摘要:
leetcode -Count and SayQ:The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1... 阅读全文
摘要:
leetcode -https://leetcode.com/problems/count-primes/Q:Description:Count the number of prime numbers less than a non-negative number,nHint:The number ... 阅读全文
摘要:
leetcode -Longest Common PrefixQ:Write a function to find the longest common prefix string amongst an array of strings. 1 class Solution { 2 public: 3... 阅读全文