You can find problems and input data on https://adventofcode.com/ page
http://localhost:9090/aoc/v1/swagger-ui/index.htmlhttp://localhost:9090/aoc/v1/2022/day1 http://localhost:9090/aoc/v1/2022/day2http://localhost:9090/aoc/v1/2022/day3http://localhost:9090/aoc/v1/2022/day4Day 5 - Stack push/pop/peek - written bruteforce solution, optimal solution is deleting repeatable same moves does no impact - not yet implemented.
http://localhost:9090/aoc/v1/2022/day5http://localhost:9090/aoc/v1/2022/day6http://localhost:9090/aoc/v1/2022/day7http://localhost:9090/aoc/v1/2022/day8Day 9 - Rope Bridge, required a two dimensional array to hold head/tail position (x,y), tail follows head movement - similar to snake move/game
http://localhost:9090/aoc/v1/2022/day9http://localhost:9090/aoc/v1/2022/day10Day 11 - LCM & mod operation based problem - when integer value goes out of range need to perform mod operation to reduce the value.
http://localhost:9090/aoc/v1/2022/day11