Advent of Code 2023 – Day 6
I'm trying to solve all the Advent of Code puzzles in this video series.
We go through how to run java code in your browser using different projects.
We try to build page that drops some balls for New Years eve. This is stream content cut down for value.
I’m trying to solve all the Advent of Code puzzles in this video series.
We talk about the Feistal Cipher and implement a simple proof of concept to test the algorithm out. Computerphile video: https://www.youtube.com/watch?v=FGhj3CGxl8I Source code: package org.ea; import java.security.MessageDigest; import java.util.Arrays; public class FeistelAlg { private final static String plainText = "the brown fox jumped over the lazy dog"; public static void doRound(byte[] left, byte[] right) throws…
In this video series, I try to challenge myself with the Advent of Code trials. Each solution will be published to Github, and I hope you will learn something from my coding mistakes and perhaps send some code my way on how you have done these challenges. I know by reading code, so this is…
I’m trying to solve all the Advent of Code puzzles in this video series.