csharp
Software Interfaces in the Wild
What’s so special about interfaces anyway? A quick dive into extracting value from interfaces in C# through a real-world example.
csharp
What’s so special about interfaces anyway? A quick dive into extracting value from interfaces in C# through a real-world example.
csharp
Linked lists are primarily used when data access is desired to be sequential in nature. This means accessing y will always come after x.
sorting
Bubble sort is a sorting algorithm that iterates through an array, comparing two elements at a time and swapping if appropriate. On each pass, at least one value is placed in its final sorted location (though it is possible that more are also placed in their final location).
interview
For a technical interview over video chat for an API Developer position, I was asked to write a function while sharing my screen that would compare two strings and determine whether or not they formed an anagram. This article outlines my approach to solving the problem.