PinnedAkiko Green·Feb 15, 2023Implement a Queue using StacksI recently deep dived my way to learning implementations of Stacks & Queues. There I learned how to create my own stack & queue classes…
PinnedAkiko Green·Feb 10, 2023Imposter Syndrome, Can I Beat This?Imposter syndrome (noun): a psychological condition that is characterized by persistent doubt concerning one’s abilities or accomplishments…
PinnedAkiko Green·Feb 18, 2023What are Stacks in Programming?The best way to think about how to implement a Stack in programming is to visualize a stack of pancakes!
Akiko Green·Jul 31, 2024A Woman Navigating The Tech IndustrySuppose you had asked me 10 years ago if I could see myself coding, I would have laughed and said, “No way, I’m not smart enough for that”…
Akiko Green·Feb 26, 2023How I deal With EscapismIt has taken me a few months and a few sessions of therapy to understand my escapism and I am finally here to write about it.
Akiko Green·Feb 23, 2023What are Queues in Programming?The best way to think about a Queue in programming is to visualize a line of people waiting for entry to a venue.
Akiko Green·Feb 15, 2023Implement a Stack using a QueueWe have now come to the last article in my series of how to implement with Stacks & Queues. What better way to end the series than with…
Akiko Green·Feb 14, 2023Sorting Algorithms: Selection SortToday we will be discussing Selection Sort! What this algorithm does, is find the smallest element in an unsorted array, and place it at…
Akiko Green·Feb 10, 2023Sorting Algorithms: Insertion SortInsertion Sort is a sorting algorithm that consumes an input element for each repetition and grows a sorted output. How this works is, at…