技術面試開場

🎤 場景跟讀

求職與面試 · 職場 — 一句一句跟著範本唸,系統會給你打分。

⚠️ 你的瀏覽器不支援語音辨識(建議用 Chrome / Edge)。仍可聽範本當練習,但不會打分。
0 / 5
A

Line 1 · Agent

Here's the problem: find the longest substring with unique characters.

題目:找出沒有重複字元的最長子字串。

Y

Line 2 · You

Let me make sure I understand — characters are ASCII or Unicode?

確認一下 — 字元是 ASCII 還是 Unicode?

A

Line 3 · Agent

Assume ASCII for now.

先假設 ASCII。

Y

Line 4 · You

Got it. Can the input be empty? And what's the expected size?

了解。輸入可以是空字串嗎?預期長度多大?

A

Line 5 · Agent

Empty is fine. Up to 10^5 characters.

空可以。最多 10 萬字元。