摘要:
Reverse Integer /** * Given a 32-bit signed integer, reverse digits of an integer. * */public class Lc7 { public static int reverse(int x) { boolean n 阅读全文
摘要:
Insert Into select 与 Select Into 哪个更快? 1在平常数据库操作的时候,我们有时候会遇到表之间数据复制的情况,可能会用到INSERT INTO SELECT 或者 SELECT INTO ;23那么二者语法上有什么区别?性能上又如何呢?45围绕着这两个问题,今天就来总 阅读全文
摘要:
Remove Element public class Lc27 { public static int removeElement(int[] nums, int val) { if (nums == null || nums.length == 0) { return 0; } int coun 阅读全文
摘要:
Implement strStr() /** * Implement strStr(). * * Return the index of the first occurrence of needle in haystack, or -1 if * needle is not part of hays 阅读全文