标签:style blog class code java int
最近在学scala语言,scala代码如下:
import scala.collection.JavaConversions._
object Solution {
def solution(A: Array[Int]): Int = {
// write your code in Scala 2.10
// using quick sort to sort the array first
scala.util.Sorting.quickSort(A)
// assign the initial former unique element to be the out of range value
var formerValue: Int = -10000000
var uniqueCnt: Int = 0
for(curValue <- A) {
if(curValue != formerValue) {
formerValue = curValue
uniqueCnt += 1
}
}
uniqueCnt
}
}[codility]Distinct,布布扣,bubuko.com
标签:style blog class code java int
原文地址:http://blog.csdn.net/sunbaigui/article/details/24936075