Skip to content

Instantly share code, notes, and snippets.

@abircse
Created February 15, 2021 13:43
Show Gist options
  • Save abircse/967e5082ec16a3daad25ed45ce67164e to your computer and use it in GitHub Desktop.
Save abircse/967e5082ec16a3daad25ed45ce67164e to your computer and use it in GitHub Desktop.
RandomCodeGeneratorInString
object RandomCodeGen {
fun generate(): String {
val rnd = Random()
val number = rnd.nextInt(999999)
return String.format("%06d", number)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment