0779. K-th Symbol in Grammar
https://leetcode.com/problems/k-th-symbol-in-grammar
Description
We build a table of n
rows (1-indexed). We start by writing 0
in the 1st
row. Now in every subsequent row, we look at the previous row and replace each occurrence of 0
with 01
, and each occurrence of 1
with 10
.
For example, for
n = 3
, the1st
row is0
, the2nd
row is01
, and the3rd
row is0110
.
Given two integer n
and k
, return the kth
(1-indexed) symbol in the nth
row of a table of n
rows.
Example 1:
Example 2:
Example 3:
Example 4:
Constraints:
1 <= n <= 30
1 <= k <= 2n - 1
ac
Last updated