mirror of
https://github.com/twitter/the-algorithm.git
synced 2024-12-22 18:21:51 +01:00
Change if refactored to match
This commit is contained in:
parent
573fab9526
commit
376f35f08f
@ -102,8 +102,9 @@ object KnownForSources {
|
||||
TypedPipe
|
||||
.from(TextLine(textFile))
|
||||
.flatMap { str =>
|
||||
if (str.startsWith("#")) {none}
|
||||
try {
|
||||
str match {
|
||||
case s"#$_" => none
|
||||
case _ => try {
|
||||
val tokens = str.trim.split("\\s+")
|
||||
val userId = tokens(0).toLong
|
||||
(1 until tokens.length).foldRight(Array.newBuilder[(Int, Float)])((i, r) => {
|
||||
@ -127,6 +128,7 @@ object KnownForSources {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
def stringifyKnownFor(
|
||||
input: TypedPipe[(Long, Array[(Int, Float)])]
|
||||
|
Loading…
Reference in New Issue
Block a user