Class Solution
- java.lang.Object
-
- g0701_0800.s0779_k_th_symbol_in_grammar.Solution
-
public class Solution extends Object
779 - K-th Symbol in Grammar.Medium
We build a table of
nrows ( 1-indexed ). We start by writing0in the1strow. Now in every subsequent row, we look at the previous row and replace each occurrence of0with01, and each occurrence of1with10.- For example, for
n = 3, the1strow is0, the2ndrow is01, and the3rdrow is0110.
Given two integer
nandk, return thekth( 1-indexed ) symbol in thenthrow of a table ofnrows.Example 1:
Input: n = 1, k = 1
Output: 0
Explanation: row 1: 0
Example 2:
Input: n = 2, k = 1
Output: 0
Explanation: row 1: 0 row 2: 01
Example 3:
Input: n = 2, k = 2
Output: 1
Explanation: row 1: 0 row 2: 01
Constraints:
1 <= n <= 301 <= k <= 2n - 1
- For example, for
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intkthGrammar(int n, int k)
-