Skip to content

Instantly share code, notes, and snippets.

View isaacg1's full-sized avatar

Izzy Grosof isaacg1

  • UIUC
View GitHub Profile
use std::collections::HashSet;
use std::fs::File;
use std::io::prelude::*;
fn main() {
/* let rooms = "aaaaa-bbb-z-y-x-123[abxyz]
a-b-c-d-e-f-g-h-987[abcde]
not-a-real-room-404[oarel]
totally-real-room-200[decoy]";
*/
for i in range(1, 101): # 5
if not i % 15: # 5
print("FizzBuzz") # 2
elif not i % 3: # 5
print("Fizz") # 2
elif not i % 5: # 5
print("Buzz") # 2
else: # 1
print(i) # 2
# 29
@isaacg1
isaacg1 / PPCGDesign.js
Created January 5, 2016 10:55 — forked from vihanb/PPCGDesign.js
A userscript to redesign the PPCG website
// ==UserScript==
// @name PPCG Design
// @namespace Doᴡɴɢᴏᴀᴛ
// @version 1
// @author Doᴡɴɢᴏᴀᴛ
// @grant none
// ==/UserScript==
function qS(x){
return document.querySelector(x);