Releases: jsoberg/Kotlin-AoC-Utilities
Releases · jsoberg/Kotlin-AoC-Utilities
Version 2025.3.1
Reverting artifact ID because of trouble with Jitpack
Full Changelog: 2025.3...2025.3.1
Version 2025.3
Added a column(colIndex) convenience function for Grid2D
Full Changelog: 2025.2...2025.3
Version 2025.2
Added asyncCount and Grid2D.count functions
Full Changelog: 2025.1.1...2025.2
Version 2025.1.1
Second attempt at auto-running jitpack build on publish
Version 2025.1
Updating versions to latest before AoC 2025
Version 2024.6
- Added full modify function, sum functions, and a neighbor finding function to 'Grid2D'
Contributors: @jsoberg
Version 2024.5
- Potentially breaking change from 2024.4 - Added a new
traversemethod toGrid2Dthat includes both the location and elements. Breaking change if you were using implicititin the previoustraversemethod. - Added an
oppositefunction to get the opposite of a Direction (e.g. North -> South)
Version 2024.4
Added the following Grid2D utility functions:
- contains operator
- Element to location map filter
- Traversing for a direction
- toString/print utilities
- Distance functions for grid locations
Contributors: @jsoberg
Version 2024.3
Added AsyncSum utilities from @rhappe