Resistor color
This commit is contained in:
parent
a91c332d29
commit
4e99d5fc46
17 changed files with 64 additions and 5 deletions
Binary file not shown.
Binary file not shown.
BIN
kotlin/resistor-color/.gradle/6.0.1/fileChanges/last-build.bin
Normal file
BIN
kotlin/resistor-color/.gradle/6.0.1/fileChanges/last-build.bin
Normal file
Binary file not shown.
BIN
kotlin/resistor-color/.gradle/6.0.1/fileContent/fileContent.lock
Normal file
BIN
kotlin/resistor-color/.gradle/6.0.1/fileContent/fileContent.lock
Normal file
Binary file not shown.
BIN
kotlin/resistor-color/.gradle/6.0.1/fileHashes/fileHashes.bin
Normal file
BIN
kotlin/resistor-color/.gradle/6.0.1/fileHashes/fileHashes.bin
Normal file
Binary file not shown.
BIN
kotlin/resistor-color/.gradle/6.0.1/fileHashes/fileHashes.lock
Normal file
BIN
kotlin/resistor-color/.gradle/6.0.1/fileHashes/fileHashes.lock
Normal file
Binary file not shown.
0
kotlin/resistor-color/.gradle/6.0.1/gc.properties
Normal file
0
kotlin/resistor-color/.gradle/6.0.1/gc.properties
Normal file
Binary file not shown.
|
@ -0,0 +1,2 @@
|
||||||
|
#Thu Mar 05 17:39:23 EST 2020
|
||||||
|
gradle.version=6.0.1
|
BIN
kotlin/resistor-color/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
BIN
kotlin/resistor-color/.gradle/buildOutputCleanup/outputFiles.bin
Normal file
Binary file not shown.
0
kotlin/resistor-color/.gradle/vcs-1/gc.properties
Normal file
0
kotlin/resistor-color/.gradle/vcs-1/gc.properties
Normal file
8
kotlin/resistor-color/.idea/.gitignore
generated
vendored
Normal file
8
kotlin/resistor-color/.idea/.gitignore
generated
vendored
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
6
kotlin/resistor-color/.idea/compiler.xml
generated
Normal file
6
kotlin/resistor-color/.idea/compiler.xml
generated
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<bytecodeTargetLevel target="13" />
|
||||||
|
</component>
|
||||||
|
</project>
|
20
kotlin/resistor-color/.idea/jarRepositories.xml
generated
Normal file
20
kotlin/resistor-color/.idea/jarRepositories.xml
generated
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RemoteRepositoriesConfiguration">
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Maven Central repository" />
|
||||||
|
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="jboss.community" />
|
||||||
|
<option name="name" value="JBoss Community repository" />
|
||||||
|
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="BintrayJCenter" />
|
||||||
|
<option name="name" value="BintrayJCenter" />
|
||||||
|
<option name="url" value="https://jcenter.bintray.com/" />
|
||||||
|
</remote-repository>
|
||||||
|
</component>
|
||||||
|
</project>
|
8
kotlin/resistor-color/.idea/misc.xml
generated
Normal file
8
kotlin/resistor-color/.idea/misc.xml
generated
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||||
|
<component name="FrameworkDetectionExcludesConfiguration">
|
||||||
|
<file type="web" url="file://$PROJECT_DIR$" />
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_13" default="false" />
|
||||||
|
</project>
|
6
kotlin/resistor-color/.idea/vcs.xml
generated
Normal file
6
kotlin/resistor-color/.idea/vcs.xml
generated
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -1,11 +1,20 @@
|
||||||
object ResistorColor {
|
object ResistorColor {
|
||||||
|
|
||||||
fun colorCode(input: String): Int {
|
fun colorCode(input: String): Int {
|
||||||
TODO("Implement this to complete the task")
|
return when (input) {
|
||||||
}
|
"black" -> 0
|
||||||
|
"brown" -> 1
|
||||||
fun colors(): List<String> {
|
"red" -> 2
|
||||||
TODO("Implement this to complete the task")
|
"orange" -> 3
|
||||||
|
"yellow" -> 4
|
||||||
|
"green" -> 5
|
||||||
|
"blue" -> 6
|
||||||
|
"violet" -> 7
|
||||||
|
"grey" -> 8
|
||||||
|
"white" -> 9
|
||||||
|
else -> throw IllegalArgumentException()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun colors(): List<String> = listOf("black", "brown", "red", "orange", "yellow", "green", "blue", "violet", "grey", "white")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue