This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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]"; | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name PPCG Design | |
// @namespace Doᴡɴɢᴏᴀᴛ | |
// @version 1 | |
// @author Doᴡɴɢᴏᴀᴛ | |
// @grant none | |
// ==/UserScript== | |
function qS(x){ | |
return document.querySelector(x); |
NewerOlder