NxN Grid Traversal
Start Timer
0:00:00
Given an integer , write a function traverse_count to determine the number of paths from the top left corner of an grid to the bottom right. You may only move right or down.
Example:
Input:
n = 2
Output:
def traverse_count(n) -> 2
As our two options for a 2x2 grid:
| start | |
|---|---|
| end |
are only to go right then down, or down then right. So there are two possible paths.
.
.
.
.
.
.
.
.
.
Comments