Yung Ching KWOKyung.hashnode.dev·Jun 25, 2024Solving Puzzle: Death first search ep1https://www.codingame.com/ide/puzzle/death-first-search-episode-1 This game need to identify shortest path between 2 node. Firstly, I build a 2D array to represent a map with link 2 nodes. 0123 00110 11010 21001 30110 Next we need to find...BFS
Yung Ching KWOKyung.hashnode.dev·Jun 17, 2024Solving puzzle: The-Labylinthhttps://www.codingame.com/ide/puzzle/the-labyrinth There are 2 objectives in this puzzle: Find the control room (C) Back to starting point (T) after control room found. Objective 1: Find the control room (C) The map provided are not good for co...codingame
Anton Yarkovoptiklab.hashnode.dev·Sep 17, 2023Exploring well-known path finding algorithms with SFML graphics libraryIntro As someone who is not a professional game developer, I have always been curious about different concepts and enjoy exploring topics that are not directly related to my daily routine. Throughout my career, I have often found myself working on sm...1 like·26 readsA-Star
Husain Shahid Raohusain3012.hashnode.dev·Jun 21, 2023Playing with the syntax - Functional programming with ElixirDisclaimer: I am learning the language myself, and in no way i am even close to being an expert, so consider this blog, as a journey diary, instead of a guide. What's this blog about? Getting used to short-hand syntax, and the pattern of writing code...1 likeFunctional Programming
Kirk Paradiswww.park-dev.io·Dec 8, 2022Advent of Code 2022 - Rust Edition - Day 8--- Part One --- The expedition comes across a peculiar patch of tall trees all planted carefully in a grid. The Elves explain that a previous expedition planted these trees as a reforestation effort. Now, they're curious if this would be a good loca...125 readsAdvent of Code 2022 - Rust Editionpathfinding