摘要: class Solution: def singleNumber(self, nums: int) -> List[int]: # difference between two numbers (x and y) which were seen only once bitmask = 0 for n 阅读全文
posted @ 2021-01-06 23:36 温暖了寂寞 阅读(60) 评论(0) 推荐(0) 编辑
摘要: bool searchMatrix(int** matrix, int matrixSize, int* matrixColSize, int target){ int row = matrixSize-1; int col = 0; while (row >= 0 && col < *matrix 阅读全文
posted @ 2021-01-06 15:57 温暖了寂寞 阅读(46) 评论(0) 推荐(0) 编辑