摘要:
Case Sensitive Check 1. Return names contain upper case Select id, name from A where name<>lower(name) collate SQL_Latin1_General_CP1_CS_AS 2. Return 阅读全文
摘要:
1.in js add id to html element and delete it var elem = document.getElementById("zzz");if (elem!=null) elem.parentElement.removeChild(elem); .attr({ i 阅读全文
摘要:
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" => [ 阅读全文