06 2019 档案
摘要:一:c语言编写简单函数(function_example.c) 二:gcc编译 三:objdump查看C语言和对应汇编
阅读全文
摘要:题目描述 "https://leetcode.com/problems/median of two sorted arrays/" 解决方法 一: class Solution(object): def findMedianSortedArrays(self, nums1, nums2): """
阅读全文
摘要:题目描述 "https://leetcode.com/problems/longest substring without repeating characters/" 解决方法 一:
阅读全文
摘要:题目描述 "https://leetcode.com/problems/add two numbers/" 解决方法 Definition for singly linked list. class ListNode(object): def __init__(self, x): self.val
阅读全文
摘要:题目描述 "https://leetcode.com/problems/two sum/" 解决方法 一: 复制列表内容 L = [1,2,3] LL = L.copy() 或LL = L[:] 二: class Solution(object): def twoSum(self, nums, ta
阅读全文

浙公网安备 33010602011771号