Exercise 1 is to take a List of strings and add up the number of characters using the fold left function. There is a very similar example in the book so I think the author is just checking you are paying attention:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
listOfStrings.foldLeft(0)((sum, value) => sum + value.length) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
trait Censor { | |
var alternatives = Map("Shoot" -> "Pucky", "Darn" -> "Beans") | |
def censor(input : String) : String = { | |
var toReturn = input | |
alternatives.foreach( entry => toReturn = toReturn.replace(entry._1, entry._2)) | |
toReturn | |
} | |
} |
Then create a version that loads the substitutions from a file:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scala.io.Source._ | |
trait CensorFromFile extends Censor { | |
val curses = | |
fromFile("day2/curses") | |
.getLines() | |
.map(_.split("=")) | |
.map(fields => fields(0) -> fields(1)).toList | |
alternatives = Map(curses : _*) | |
} |
- Open and read a file using the library method fromFile
- Get the lines of the file one by one using getLines
- Map each like to an Array by splitting the like with the = sign (the file is key value pairs like a Java properties file)
- Map the array to a tuple then turn it into a list
- Construct a map from the List of tuples
And done! Looks a lot nicer than it sounds! The full source code is available on my github.
No comments:
Post a Comment