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
| ### | |
| ### Day 6 | |
| ### | |
| ### Part 1 | |
| ### concise version, don't bother checking for matrix bounds! | |
| library(tidyverse) | |
| input <- read_lines("day6_input.txt") |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <title>Fisher-Yates</title> | |
| </head> | |
| <body> | |
| <h1>Fisher-Yates Shuffling in Javascript</h1> | |
| <p>Open the console, ensure that the accompanying javascript file is also available, then click the button below.</p> |