Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Algorithm Visualizer Contribution - 3D PathFinder #2759

Merged
merged 2 commits into from
Oct 20, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions _CodingChallenges/051.1-astar.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,12 @@ contributions:
name: "Kaapeine"
url: "https://github.com/Kaapeine/"
url: "https://github.com/Kaapeine/MotionPlanningAlgorithmsVisualizer/"
- title: "3D PathFinder"
author:
name: "Yogesh Kumar"
url: "https://github.com/b-yogesh"
url: "https://b-yogesh.github.io/3D-PathFinder/"
source: "https://github.com/b-yogesh/3D-PathFinder"
---

In this coding challenge, I attempt an implementation of the A* Pathfinding Algorithm to find the optimal path between two points in a 2D grid. I begin by explaining the mechanics of how the algorithm works, look at pseudo-code, and then write the algorithm in JavaScript using the p5.js library for rendering.