darkmortal.hashnode.devPath planning algorithm using Wavefront PropagationCheckout my implementation of this algorithm (using Java) on GitHub https://youtu.be/0ihciMKlcP8 Enjoy my playlist and follow me on Spotify https://open.spotify.com/playlist/2YOo1r3QiF82zcFdsi70Lt?si=0fd9379c741d46fcJul 16, 2023·1 min read
darkmortal.hashnode.devA different approach to Matrix multiplication using Strassen's Algorithmhttps://youtu.be/sZxjuT1kUd0 List of matrices on which we are going to run and compare our functions # 4x4 and 4x3 matrices mat3 = [ [5,2,3,1], [7,6,4,2], [5,6,7,5], [5,7,9,7] ] mat4 = [ [5,2,3], [7,6,4], [5,6,7], [5...Jul 16, 2023·2 min read
darkmortal.hashnode.devHow structure-padding in C/C++ actually worksIn case you're not familiar with structure padding or inheritance, I'd suggest you go through these videos first as they will come in handy https://youtu.be/aROgtACPjjg https://youtu.be/X8nYM8wdNRE Why use Structure Padding in the first place? 🤷...Dec 31, 2021·5 min read