Skip to content

Instantly share code, notes, and snippets.

@1gravity
Last active September 14, 2022 02:04
Show Gist options
  • Save 1gravity/a1631b588786fc21b356f16f10772712 to your computer and use it in GitHub Desktop.
Save 1gravity/a1631b588786fc21b356f16f10772712 to your computer and use it in GitHub Desktop.
Kotlin Trie Search Optimized
override fun search(key: String) = key.fold(root) { node, char ->
node.children[char] ?: return null
}.value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment