Hacktoberfestadd codenew algorithm
Repository metrics
- Stars
- (13,462 stars)
- PR merge metrics
- (No merged PRs in 30d)
Description
I would like to implement an algorithm to find the number of possible paths from (0,0) to (M-1,N-1) in an MxN matrix where the only moves are right and down (so +1 on x or y) in C++. This would go under Dynamic Programming. Thanks.