Algo-Phantoms / Algo-Tree

Algo-Tree is a collection of Algorithms and data structures which are fundamentals to efficient code and good software design. Creating and designing excellent algorithms is required for being an exemplary programmer. It contains solutions in various languages such as C++, Python and Java.
MIT License
363 stars 617 forks source link

Unique Paths #1906

Open vanshikachokhani opened 3 years ago

vanshikachokhani commented 3 years ago

Is your feature request related to a problem? Please describe. Find the number of unique paths if an ant wants to go from top left corner of a m*n matrix to the bottom right corner and it can move either right or down at any point of time. Some obstacles are there is the matrix i.e the cells which the ant cannot visit. The obstacles and space are marked as 1 and 0 respectively in the grid. Find the number of unique paths.

Describe the solution you'd like I will use a dynamic programming approach to solve the problem.

Do you want to work on it I am a Gssoc21 participant and will code in C++.

Please assign this to me. @nakul-19 @raksha009 @plazzy99 @tarun26091999 @rish-singhal @yasharth291 @Rohan27s @rudrakshi99

Srishti013 commented 3 years ago

Please assign this to me in Python

iaryangoyal commented 3 years ago

Please assign this to me in Python

U-c0de commented 3 years ago

Please assign this to me in java