Search
⌘K

Leetcode 38. Count and Say

Generate the nth term of the "count-and-say" sequence by repeatedly applying run-length encoding to the previous term (starting from "1"), where each step converts consecutive identical digits into a count followed by the digit. The core challenge is efficient string processing of consecutive runs (1 ≤ n ≤ 30 makes iterative simulation sufficient).

Asked at:

Meta


Question Timeline

See when this question was last asked and where, including any notes left by other candidates.

Mid September, 2024

Meta

Senior

Implement Count and Say sequence

Comments

Your account is free and you can post anonymously if you choose.