C++ || Yahoo! Sports – Current Batting Order – Programming Interview Test (Question 3 of 3)

The following is sample code which demonstrates a solution to the Yahoo! Sports programming interview question titled “Current Batting Order.” The test was taken on November 2013 for educational More »

C++ || Knapsack Problem Using Dynamic Programming

The following is another homework assignment which was presented in an Algorithm Engineering class. Using a custom timer class, the following is a program which reduces the problem of More »

C++ || Multi Process Server & Client Hash Table Using Thread Pools, Message Queues, & Signal Handlers

The following is another homework assignment which was presented in an Operating Systems Concepts class. Using commandline arguments, the following is a program which implements a multi threaded hash More »

Python || Aku Aku Snake Game Using Pygame

The following is another homework assignment which was presented in an Introduction to Game Design and Production class. This project is an implementation of the classic “Snake” game using More »

Python || Brainy Memory Game Using Pygame

The following is another homework assignment which was presented in an Introduction to Game Design and Production class. This project is an implementation of the classic “Memory” game using More »

 

C# || Two Sum IV – How To Get Two Numbers In Binary Search Tree Equal To Target Value Using C#

The following is a module with functions which demonstrates how to get two numbers in a binary search tree equal to target

C# || Counting Bits – How To Return The Number Of 1’s In Binary Representation Of X Using C#

The following is a module with functions which demonstrates how to return the number of 1’s in binary representation of X using

C# || How To Traverse N-ary Tree Level Order Using C#

The following is a module with functions which demonstrates how to traverse a N-ary Tree level order using C#. 1. Level Order

C# || How To Validate A Binary Search Tree Using C#

The following is a module with functions which demonstrates how to validate a binary search tree using C#. 1. Is Valid BST

C# || Max Area of Island – How To Find The Maximum Area Of An Island In A Grid Using C#

The following is a module with functions which demonstrates how to find the maximum area of an island in a grid using

C# || Binary Tree Right Side View – How To Get Nodes Ordered Top To Bottom C#

The following is a module with functions which demonstrates how to get nodes in a binary tree ordered from top to bottom

C# || How To Find The Shortest Clear Path In A Binary Matrix Using C#

The following is a module with functions which demonstrates how to find the shortest clear path in a binary matrix using C#.

C# || Palindromic Substrings – How To Find The Number Of Palindromic Substrings Using C#

The following is a module with functions which demonstrates how to find the number of palindromic substrings using C#. 1. Count Substrings

C# || Longest Valid Parentheses – How To Find The Longest Valid Well Formed Parentheses Using C#

The following is a module with functions which demonstrates how to find the longest valid well formed parentheses using C#. 1. Longest

C# || Backspace String Compare – How To Backspace Compare Two Strings Using C#

The following is a module with functions which demonstrates how to backspace compare two strings using C#. 1. Backspace Compare – Problem

C# || How To Design Underground System To Keep Track Of Customer Travel Times Between Stations Using C#

The following is a module with functions which demonstrates how to design an underground system to keep track of customer travel times

VB.NET || How To Add Simple Object Change Tracking To Track Changes Using VB.NET

The following is a module with functions which demonstrates how to add simple object change tracking to track changes made to an

C# || How To Add Simple Object Change Tracking To Track Changes Using C#

The following is a module with functions which demonstrates how to add simple object change tracking to track changes made to an

C# || Remove Linked List Elements – How To Remove All Target Linked List Elements Using C#

The following is a module with functions which demonstrates how to remove all target linked list elements using C#. 1. Remove Elements