Hello, World. I'm Jason.
Thanks for visiting my website. Check out my thoughts on my blog, or send a message if you'd like to get in touch.
If you wanna know more about me, check out this page. If you'd like for me to work on your software project, check out the different services that I offer.
Latest Blog Posts
-
Binary Search in Go
Binary Search is a fundamental searching algorithm that you can use to find a number in a sorted array. The general idea is, since the array is sorted, you can check the value of the middle element, see if the value you're looking for is less than ...
-
Working with The Graph Data Structure in Go
Representing Graphs in Code Graphs are just a data structure where a bunch of nodes are connected to each other by imaginary lines called edges. They're really similar to linked lists and trees except pretty much any node can be connected to any o...
-
Binary Trees In Golang
Binary trees are a fairly simple data structure where you have a node that contains some data, and a max of two child nodes that also contain some data, like this: 1 / \ 2 3 Each child node can also have up to two child nodes, and...