摘要:
如图: 只能从左下角或者从右上角入手,输入的数大于当前数就往右走,小于当前的数就往上走 class Solution{ public bool Find(int target, int[][] array) { int rowCount = array.GetLength(0);//获取行的长度 i 阅读全文
摘要:
using (HashAlgorithm hash = HashAlgorithm.Create()) { using (FileStream file1 = new FileStream(FilePath1, FileMode.Open), file2 = new FileStream(FileP 阅读全文