摘要:
IOS 打包上线 All object files and libraries for bitcode must be generated from...xcode7项目上线的时候, Archive不过, 报错:xxx does not contain bitcode. You must rebui 阅读全文
摘要:
#region Linq 找出小于3的数 int[] a = {1,2,3,4,5,6}; var x = from n in a where n<3 select n; foreach (var i in x) { Console.WriteLine(i); } #endregion 阅读全文
摘要:
public static int day(int sum, int n, int d) { int test = n * (n - 1) / 2; int test2 = (sum - test) % n; if (test2 == 0) { return (sum - test) / n; } else { return day(sum - d - 1, n - 1... 阅读全文