- Notifications
You must be signed in to change notification settings - Fork2.4k
create 1091-shortestpath-in-binary-matrix.cpp#3264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Leetcode Question787. Cheapest Flights Within K Stops Previous Solution Provided:Github Solution New Solution Added :Submission Link Neetcode video:YT Link |
Your solution for both looks great! However, I want to suggest a small edit for There is already a solution using Dijkstras, and it is also a valid way to solve it so we do not need to delete it. It is always good to keep other ways of solving a problem, but the first solution in the file should always be the one following the video. And use of commenting to avoid any confusion, I would suggest that you edit the file to add yours while keeping the other solution. You can put yours first (Since it is the one following the video solution) and put the other solution below. They should be separated in two
|
Thanks@a93a for the review I had done the necessary code changes. |
Thank you@adityaiiitr ! I have merged this now. |
@adityaiiitr Please feel free to create seperate PR for each Leetcode problem in the future, this makes it easier to read & review 😃 |
Note: I have used the same logic as it was described in the youtube video. Thanks!
Important
Please make sure the file name is lowercase and a duplicate file does not already exist before merging.