Resistor color

This commit is contained in:
Anthony Cicchetti 2020-03-05 17:43:37 -05:00
parent a91c332d29
commit 4e99d5fc46
17 changed files with 64 additions and 5 deletions

View file

@ -0,0 +1,2 @@
#Thu Mar 05 17:39:23 EST 2020
gradle.version=6.0.1

8
kotlin/resistor-color/.idea/.gitignore generated vendored Normal file
View 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/

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="13" />
</component>
</project>

View 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
View 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
View 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>

View file

@ -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")
} }