int Find_Greatest_Common_Denominator(int x, int y) //Function that finds the Greatest Common Denominator ("GCD") between 2 integers { int a;
Continue ReadingC++: JSON
Load a JSON string into a data structure. Also create a new data structure and serialize it into JSON. Use objects and arrays (as appropriate for y
Continue ReadingC++: Multiplicative Digital Root
The multiplicative digital root (MDR) and multiplicative persistence (MP) of a number, n, is calculated rather like the Digital root except digits are
Continue ReadingEfficiently Storing Real-Time Intraday Data in an Application Agnostic Way
What would be the best approach to handle real-time intraday data storage? For personal research I've always imported from flat files only into mem
Continue ReadingC++ Full Course Lesson 3: More on Printing Text
https://www.youtube.com/watch?v=sPv0HQ8xOaU&list=PLAE85DE8440AA6B83&index=3
Continue ReadingC++: Calculate Geometric Mean
void Geometric_Mean_Array(double & mean_normal, const double * a, const int n) //Function that calculates the geometric mean (geometric avera
Continue ReadingC++: Sample Covariance
double sample_covariance(double A[], double B[], int length) // Function calculates the sample covariance the array A and array B, whose lengths
Continue ReadingC++: Black Scholes Put Option Theta
// Calculate the Black Scholes European put option Theta double BS_Put_Option_Theta(double S, double K, double r, double v, double T) // Parame
Continue ReadingWhy Is Subtracting These Two Times (In 1927) Giving a Strange Result?
If I run the following program, which parses two date strings referencing times one second apart and compares them: public static void main(String[]
Continue ReadingIs Java “Pass-by-Reference” or “Pass-by-Value”?
I always thought Java was pass-by-reference; however I’ve seen a couple of blog posts (for example, this blog) that claim it’s not. I don’t thin
Continue Reading




