Advent of Code is an annual December event, where holiday-themed puzzles are published every day from December 1 to December 25. With the permission of Eric Wastl, creator of Advent of Code, we'll show how to solve these puzzles using the idiomatic Kotlin style:
We'll take you through the basic tips on how to get up and running with solving Advent of Code challenges with Kotlin:
Read our blog post about Advent of Code 2021
Use this GitHub template to create projects
Check out the welcome video by Kotlin Developer Advocate, Sebastian Aigner:
Apply windowed and count functions to work with pairs and triplets of integers.
Read the puzzle description on Advent of Code
Check out the solution from Anton Arhipov on the Kotlin Blog or watch the video:
Learn about destructuring declarations and the when expression.
Read the puzzle description on Advent of Code
Check out the solution from Pasha Finkelshteyn on GitHub or watch the video:
Explore different ways to work with binary numbers.
Read the puzzle description on Advent of Code
Check out the solution from Sebastian Aigner on Kotlin Blog or watch the video:
Learn how to parse the input and introduce some domain classes for more convenient processing.
Read the puzzle description on Advent of Code
Check out the solution from Anton Arhipov on the GitHub or watch the video:
Explore input handling, iterating over a list, different ways of building a map, and using the let function to simplify your code.
Read the puzzle description on Advent of Code
Check out the solution from Svetlana Isakova on the Kotlin Blog or watch the video:
Explore string utility functions, regular expressions, operations on collections, and how the let function can be helpful to transform your expressions.
Read the puzzle description on Advent of Code
Check out the solution from Svetlana Isakova on the Kotlin Blog or watch the video:
Compare imperative and more functional code styles, work with pairs and the reduce() function, edit code in the column selection mode, and fix integer overflows.
Read the puzzle description on Advent of Code
Check out the solution from Mikhail Dvorkin on GitHub or watch the video:
Apply the when expression and explore different ways of how to validate the input: utility functions, working with ranges, checking set membership, and matching a particular regular expression.
Read the puzzle description on Advent of Code
Check out the solution from Sebastian Aigner on the Kotlin Blog or watch the video:
Use the Kotlin standard library functions (replace(), toInt(), find()) to work with the binary representation of numbers, explore powerful local functions, and learn how to use the max() function in Kotlin 1.5.
Read the puzzle description on Advent of Code
Check out the solution from Svetlana Isakova on the Kotlin Blog or watch the video:
Learn how to group and count characters in strings and collections using the standard library functions: map(), reduce(), sumOf(), intersect(), and union().
Read the puzzle description on Advent of Code
Check out the solution from Anton Arhipov on the Kotlin Blog or watch the video:
Learn how to use regular expressions, use Java's compute() method for HashMaps from Kotlin for dynamic calculations of the value in the map, use the forEachLine() function to read files, and compare two types of search algorithms: depth-first and breadth-first.
Read the puzzle description on Advent of Code
Check out the solution from Pasha Finkelshteyn on the Kotlin Blog or watch the video:
Apply sealed classes and lambdas to represent instructions, apply Kotlin sets to discover loops in the program execution, use sequences and the sequence { } builder function to construct a lazy collection, and try the experimental measureTimedValue() function to check performance metrics.
Read the puzzle description on Advent of Code
Check out the solution from Sebastian Aigner on the Kotlin Blog or watch the video:
Explore different ways to manipulate lists in Kotlin using the any(), firstOrNull(), firstNotNullOfOrNull(), windowed(), takeIf(), and scan() functions, which exemplify an idiomatic Kotlin style.
Read the puzzle description on Advent of Code
Check out the solution from Svetlana Isakova on the Kotlin Blog or watch the video:
Complete more tasks with Kotlin Koans
Create working applications with the free Kotlin Core track by JetBrains Academy
© 2010–2023 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/docs/advent-of-code.html