View FizzBuzz.js
/** | |
* @class FizzBuzz | |
* @author Erik Johnson <erik@erikaugust.com> | |
*/ | |
class FizzBuzz { | |
/** | |
* @function constructor() | |
* @param {number} start | |
* @param {number} end | |
* @returns {Array<string>} |
View spectre.c
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#ifdef _MSC_VER | |
#include <intrin.h> /* for rdtscp and clflush */ | |
#pragma optimize("gt",on) | |
#else | |
#include <x86intrin.h> /* for rdtscp and clflush */ | |
#endif |