Skip to content

Latest commit

 

History

History
70 lines (34 loc) · 1.15 KB

0935-knight-dialer.adoc

File metadata and controls

70 lines (34 loc) · 1.15 KB

935. Knight Dialer

{leetcode}/problems/knight-dialer/[LeetCode - Knight Dialer^]

A chess knight can move as indicated in the chess diagram below:

] .           image::https://assets.leetcode.com/uploads/2018/10/30/keypad.png[{image_attr}

This time, we place our chess knight on any numbered key of a phone pad (indicated above), and the knight makes N-1 hops. Each hop must be from one key to another numbered key.

Each time it lands on a key (including the initial placement of the knight), it presses the number of that key, pressing N digits total.

How many distinct numbers can you dial in this manner?

Since the answer may be large, output the answer modulo 10^9 + 7.

Example 1:

Input: 1
Output: 10

Example 2:

Input: 2
Output: 20

Example 3:

Input: 3
Output: 46

Note:

  • 1 ⇐ N ⇐ 5000

link:{sourcedir}/_0935_KnightDialer.java[role=include]