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# || How To Validate A Phone Number Using C#

The following is a module with functions which demonstrates how to validate a phone number using C#. Not only does this function

C# || How To Shuffle & Randomize An Array/List/IEnumerable Using C#

The following is a module with functions which demonstrates how to randomize and shuffle the contents of an Array/List/IEnumerable using C#. This

C# || Word Wrap – How To Split A String Text Into lines With Maximum Length Using C#

The following is a module with functions which demonstrates how to split text into multiple lines using C#. The following function is

C# || How To Get First/Last Day Of The Week And The First/Last Day Of The Month

The following is a module with functions which demonstrates how to get the first and last day of the week, as well

C++ || Simple Palindrome Checker Using A Stack & Queue Using C++

The following is a program which demonstrates how to use a stack and a queue to test for a palindrome using C++.

C++ || How To Sort An Array/Vector/Container With Multiple Sorting Conditions Using C++

The following is a module with functions which demonstrates how to sort an array/vector/container with multiple sorting conditions using C++. The function

C++ || How To Get The Next & Previous Multiple Of A Number Using C++

The following is a module with functions which demonstrates how to get the next and previous multiple of a number using C++.

C++ || How To Round A Number To The Nearest X Using C++

The following is a module with functions which demonstrates how to round a number to the nearest X using C++. This function

C++ || How To Split & Batch An Array/Vector/Container Into Smaller Sub-Lists Of N Size Using C++

The following is a module with functions which demonstrates how to split/batch an array/vector/container into smaller sublists of n size using C++.

C++ || How To Shuffle & Randomize An Array/Vector/Container Using C++

The following is a module with functions which demonstrates how to randomize and shuffle the contents of an array/vector/container using C++. The

C++ || How To Find The Day Of The Week You Were Born Using C++

The following is a program which demonstrates how to find the day of week you were born using C++. The program demonstrated

C++ || How To Get The Day Of The Week & The Week Day Name From A Date Using C++

The following is a module with functions which demonstrates how to get the day of the week and the week day name

C++ || Simple Multi Digit, Decimal & Negative Number Infix To Postfix Conversion & Evaluation

The following is sample code which demonstrates the implementation of a multi digit, decimal, and negative number infix to postfix converter and

JavaScript || How To Add & Populate A Dropdown List With An Array Using Vanilla JavaScript

The following is a module with functions which demonstrates how to add and populate a dropdown select list with an array of