文章目录1. 题目2. 解题1. 题目
We have n cities and m bi-directional roads where roads[i] [ai, bi] connects city ai with city bi. Each city has a name consisting of exactly 3 upper-case English letters given in the string array names. Starting at any city…
文章目录1. 题目2. 解题1. 题目
给定字符串 S and T,找出 S 中最短的(连续)子串 W ,使得 T 是 W 的 子序列 。
如果 S 中没有窗口可以包含 T 中的所有字符,返回空字符串 “”。 如果有不止一个最短长度的窗口&#x…
文章目录1. 题目2. 解题1. 题目
Table: Customers
------------------------
| Column Name | Type |
------------------------
| customer_id | int |
| name | varchar |
------------------------
customer_id is the primary key for this table.
T…