I have just started to learn Scala after some experience with functional programming in other languages.
def freq(c:Char, y:String, list:List[(Char,Int)]): List[(Char,Int)] = list match{
case _ => freq(c, y.filter(_ == c), list :: List((count(c,y),c)))
case nil => list
}
In the above code I am getting an error when trying to concatenate the list recursively. The error is occurring in list::List((count(c,y),c))
. The count method takes a char and a string and returns an int based on how many times that char occurs.
Any help would be much appreciated. The error I am getting states found [(Char,Int)] required (Char,Int).
Cons operator (
::
) is an infix operator so if you want to get a type ofList[T]
and notList[List[T]]
then you should write