摘要:
Isomorphic Strings2015.4.30 15:54Given two stringssandt, determine if they are isomorphic.Two strings are isomorphic if the characters inscan be repla... 阅读全文
摘要:
Count Primes2015.4.30 15:51Count the number of prime numbers less than a non-negative number,nSolution: Sieve of Eratosthenes.Accepted code: 1 // 2CE... 阅读全文
摘要:
Remove Linked List Elements2015.4.30 15:00Remove all elements from a linked list of integers that have valueval.ExampleGiven:1 --> 2 --> 6 --> 3 --> 4... 阅读全文