摘要:
Given an array of integers, every element appears three times except for one. Find that single one. solution: def singleNumber(self,A): A.sort() for i 阅读全文
摘要:
Given an array of integers, every element appears twice except for one. Find that single one. solution: class solution: def singleNumber(self,A): A.so 阅读全文
摘要:
题目输入输出 "this is a sentence" => [t, h, i, s, i, s, a, s, e, n, t, e, n, c, e]"thiis iss a senntencee" => [i, s, n, e]"thiisss iss a senntttenceee" => [ 阅读全文