| Ctrl-t Ctrl-r | rebuild tags |
| Ctrl-t Ctrl-y | search for definitions |
| ⌘T | go to file |
| import scala.math.{min, abs} | |
| object Solution { | |
| def solution(A: Array[Int]): Int = { | |
| if (A.size < 2 || A.size > 100000) sys.error(s"Invalid input - array size: ${A.size}") | |
| val total = A.map(_.toLong).sum | |
| (A.foldLeft[(Int, Long, Long)](-1, -1, 0l) { (t, i) => | |
| if (i < -1000 || i > 1000) sys.error(s"Invalid array element: $i") |
| object Solution { | |
| def solution(A: Array[Int]): Int = { | |
| val (results, _) = A.sorted.foldLeft((0, 0)) { (t, item) => | |
| val (current, last) = t | |
| val next = last + 1 | |
| item match { | |
| case x if x < 0 => (current, last) | |
| case `last` => (item, item) |
| object Solution { | |
| def solution(A: Array[Int]): Int = { | |
| val positive = new java.util.BitSet() | |
| val negative = new java.util.BitSet() | |
| A.foldLeft(0) { (current, i) => | |
| val duplicate = if (i < 0) (negative get i * -1) | |
| else (positive get i) | |
| duplicate match { |
| import java.util.BitSet | |
| object Solution { | |
| def solution(A: Array[Int]): Int = { | |
| val bitz = new BitSet(A.size + 1) | |
| val good = A.foldLeft(true)((current, i) => | |
| if (current) { | |
| (i, bitz.get(i)) match { | |
| case (x, _) if x > A.size => |
| <property> | |
| <name>hive.vectorized.groupby.flush.percent</name> | |
| <value>0.1</value> | |
| </property> | |
| <property> | |
| <name>hive.vectorized.groupby.maxentries</name> | |
| <value>10240</value> | |
| </property> | |
| <property> | |
| <name>tez.session.am.dag.submit.timeout.secs</name> |
| trait JDBCer { | |
| this: AkkaAgentMySQLStateServiceComponent => | |
| val retryTimes = config int "db.extensions.retries" or 5 | |
| /** | |
| * Get a random slave connection name for Jeeves | |
| */ | |
| def slaveDB(): Option[String] = { | |
| // Randomize List |
| package com.klout.api.services | |
| import akka.agent.Agent | |
| import akka.dispatch._ | |
| import org.joda.time._ | |
| import com.klout.playful2.sugar._ | |
| import com.klout.playful2.zookeeper._ | |
| import com.klout.playful2.actors._ | |
| import java.util.{ Map => javaMap } | |
| import java.{ lang => java } |