Added basic implementation of rst tree. Now TODO main part - T9 dictionary for 0-9 mapping.
This commit is contained in:
parent
50cc9b8f5b
commit
39e5abc769
10 changed files with 600 additions and 0 deletions
18
2025/01/cracking_code_interview_16_20_t9/build.gradle
Normal file
18
2025/01/cracking_code_interview_16_20_t9/build.gradle
Normal file
|
@ -0,0 +1,18 @@
|
|||
plugins {
|
||||
id 'java'
|
||||
}
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation('ch.qos.logback:logback-classic:1.5.15')
|
||||
}
|
||||
|
||||
tasks.register('runDefault', JavaExec) {
|
||||
classpath = sourceSets.main.runtimeClasspath
|
||||
mainClass = 'pl.polgrabia.demos.crackingcodeinterview.t16x20.Program'
|
||||
args "${System.getenv('LOCALAPPDATA')}/cracking_code_interview/t16x20/words.txt"
|
||||
jvmArgs "-ea"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue