摘要:
题目:there are two sorted arrays nums1 and nums2 of size m and n respectively.Find the median of the two sorted arrays.The overall run time complexity s... 阅读全文
摘要:
原题:Given a string, find the length of the longest substring without repeating characterFor example, the Longest substring without repeating letters fo... 阅读全文
摘要:
原题:You are given two linked lists representing two non-negative numbers.The digits are stored in reverse order and each of their nodes contain a singl... 阅读全文
摘要:
1\string are immutable, which means you can't change an existing string.>>>greeting = 'Hello world!'>>>greeting[0] = 'J'TypeError: object does not sup... 阅读全文