Tagged Questions
1
vote
1answer
55 views
Adding elements to global list object in scala
Allright guys, pardon me if this question has already been asked. Yet another Scala newbie question. So for example if I want to have a global List object which can be used as a place holder ...
0
votes
0answers
21 views
Play 2.1.1 Bind a List<Class> from form
I saw some similar questions, but I couldn't really understand any answers.
I have a problem with getting a list of from a form. I've been doing it like this:
@Entity
public class Foo extends Model ...
1
vote
2answers
92 views
infix notation sometimes doesn't work in scala, why is that?
Alright, so I was making some tests to get familiar with Scala, and wanted to see if I could make lists Java style rather than the fancy way you'd do it in Scala...
I know that you can do it like ...
0
votes
2answers
47 views
Filtering a list of tuples
I have a list of tuples and I want to filter out the all elements where the second value in the tuple is not equal to 7.
I do:
valuesAsList.filter(x=>x._2 != 7)
Can I use wildcard notation to ...
3
votes
3answers
80 views
Difference between sorted and sortBy
According to doc for List
def sorted[B >: A](implicit ord: math.Ordering[B]): List[A]
Sorts this list according to an Ordering.
def sortBy[B](f: (A) ⇒ B)(implicit ord: math.Ordering[B]): ...
0
votes
1answer
48 views
Difference between ::: and ++ [duplicate]
For a scala list, what is the difference between
:::
and
++
From doc
::: Adds an element at the beginning of this list.
++ Returns a new list containing the elements from the left hand ...
1
vote
2answers
66 views
Convert map to a sorted list
I have a map...
Map(a -> List(a, a), b -> List(b, b), l -> List(l, l))
I can convert to a List
List((a,2), (l,2), (b,2))
By simply doing myMap.toList();
But I'd like to convert to a ...
1
vote
1answer
70 views
Getting result in List[(Char, Int)] instead of List[Product]
I'm trying out the following piece of code in Scala REPL,
val a = List(('a',4),('b',8))
val z = ('a',1)
a map (x => if (x._1 == z._1) (x._1, x._2 - z._2) else (z :: a))
I'm getting the following ...
0
votes
2answers
41 views
How to append to a LinkedList inside a HashMap?
Given is the following construct
import scala.collection.mutable.HashMap
import scala.collection.mutable.LinkedList
private var log = new HashMap[String, LinkedList[String]]
How do I append to the ...
0
votes
3answers
67 views
Scala - select elements from ordered list
I am looking for a nice way to remove first N elements which are equal from the ordered list, e.g.
List(1,1,1,2,3,3)
should return
removeSame(list) -> (1,1,1)
Is there a nice way to do it, ...
0
votes
1answer
79 views
Scala way / idiom of dealing with immutable List
I have found successes using ideas of immutable List but I am stumped when come to this piece of code here. I find myself has written something more Java than of Scala style. I would prefer to use ...
3
votes
2answers
133 views
Scala difference of two lists
I have two lists:
val list1 = List("word1","word2","word2","word3","word1")
val list2 = List("word1","word4")
I want to remove all occurrences of list2 elements from list1, i.e. I want
...
1
vote
1answer
57 views
NullPointerException on a listener pattern in scala
I'm trying to create a listener design Pattern like that:
abstract class Listener(g: Engine) {
g.addListener(this)
}
class Listener1(g: Engine) extends Listener(g)
class Listener2(g: Engine) ...
0
votes
3answers
112 views
Scala - Mutable ListBuffer or Immutable list to choose?
I am writing a simple scala program that will calculate moving average of list of quotes of a defined size say 100.
Quotes will be coming at the rate of approx 5-6 quotes per second .
1) Is it good ...
2
votes
4answers
154 views
Pattern matching lists of certain size or greater/less
Is there a way to specify a pattern that matches a List with a size greater (or less) or equal a certain value in Scala?
For example, if I want to apply the same action to all lists of size 3 or ...
0
votes
2answers
74 views
Checking if values in List is part of String
I have a string like this:
val a = "some random test message"
I have a list like this:
val keys = List("hi","random","test")
Now, I want to check whether the string a contains any values from ...
1
vote
3answers
88 views
Can't get flatten of Try into a for comprehension
This is a combination of a stylistic question, and my attempts to broaden my Scala understanding.
I've got a list containing Future's, I want to compute the values of the futures, transform into ...
1
vote
1answer
68 views
“Replacing” an element matching a predicate in an arbitrarily nested List in Scala
I have the following list (just an example - the list can be of an arbitrary depth);
val foo = List(1, List(2, List(3, 4)), List(5, List(6, List(7, List(8,9,10)))))
I want to traverse the list, and ...
5
votes
1answer
134 views
What's the difference between ::: and ++ for Lists?
Given two lists a and b, what's the difference between a ::: b and a ++ b? I suspected one of these operators would simply call the other, but in fact, the implementations look completely different:
...
2
votes
1answer
64 views
How to convert inner elements of a List[List[Int]] to tupleNs? (How to flatten polymorphic tupleNs)
I want to convert multiple lists, each with a constant inner list size, that look like this:
List(List(1, 2, 3), List(3, 4, 5))
List(List(1, 2), List(3, 4))
to this:
List((1, 2, 3), ...
0
votes
1answer
44 views
how do i make a call to a function with an Int list parameter in Scala?
I have a function signature like this:
def countChange(money: Int, coins: List[Int]): Int = {
and need to make a call to the function with parameters such as this: money = 4, coins = [1,2]
?
0
votes
2answers
188 views
“ Exception in thread ”main“ java.util.NoSuchElementException: head of empty list ” error and more in Scala
I wrote a recursive parentheses balancing function and there doesnt seem to be any errors in the code but when I run it I get a lot of errors.
I wrote the function with a call like this:
...
0
votes
3answers
150 views
Finding next element in List using pattern matching
Im playing with scala pattern matching, trying to make a findNext function:
findNext(1,List(1,2,3)) == 2
findNext(2,List(1,2,3)) == 3
findNext(3,List(1,2,3)) == 1
def findNext(needle : Int, haystack ...
0
votes
2answers
72 views
Scala Sort based on a number in the string
I have a file which has lines of the type:
A 2.3 B 5.6
A 5.4 B 3.5
A 5.6 B 3.4
I want to read the file and sort it based on the second column that is 2.3,5.4,5.6 and extend the sort to all the ...
1
vote
2answers
124 views
Scala error: value sort is not a member of List
Following a simple example at http://www.simplyscala.com/ I get:
scala> val lst=List(1,7,2,8,5,6,3,9,14,12,4,10)
lst: List[Int] = List(1, 7, 2, 8, 5, 6, 3, 9, 14, 12, 4, 10)
scala> ...
0
votes
1answer
103 views
Play Framework 2.0, Scala define input type and print a list
I am using Play Framework 2.0,
I am trying to print out a table, and depending on the type of my data, my program will input different. I've already figured out how to define the class of my input ...
0
votes
2answers
171 views
Convert scala list to Json object
I want to convert a scala list of strings, List[String], to an Json object.
For each string in my list I want to add it to my Json object.
So that it would look like something like this:
{
...
0
votes
1answer
77 views
Scala Map a list of items to a value
I have a list of bigrams of a sentence and another original list of relevantbigrams, I want to check that if any of the relevantbigrams are present in the sentences then I want to return the sentence. ...
2
votes
3answers
156 views
Scala List.contains(x) return false, but exists(_.== x) returns true
I'm working with some simple data structures and collections in Scala and I've noticed what I think is strange behavior. Here's the object:
class State (protected val trackmap: Map[Int, ...
0
votes
2answers
100 views
Best way to create a list from another list's members in Scala
I'm trying to create an immutable list in Scala from another list. By that I mean that I have list a and I want to make list b which is every a.myVariable. What I'm looking for is a quick way to do ...
0
votes
1answer
82 views
Scala append elements to Indexed Sequence
I have a indexed sequence of 10 doubles and I want to append few more doubles to the original indexed sequence. I tried using :: and ++ but it doesn't work. I can only use val.
val features = ...
0
votes
3answers
76 views
Scala Combine Sequences into triples [duplicate]
I have 3 IndexedSequences and I could like to combine them as follows:
indSeq1 = (a,b,c)
indSeq2 = (1,2,3)
indSeq3 = (!,@,#)
result:([a,1,!],[b,2,@],[c,3,#])
I used zipped but I get ...
0
votes
3answers
69 views
Scala access sequence of Maps
I have a IndexedSeq[Map[String, String]] and I would like to extract value where key is "text" and I would like to put it in a val text:IndexedSeq[String]. I have written the following piece but it ...
0
votes
4answers
521 views
Scala split string to tuple
I would like to split a string on whitespace that has 4 elements:
1 1 4.57 0.83
and I am trying to convert into List[(String,String,Point)] such that first two splits are first two elements in the ...
1
vote
2answers
89 views
Reverse each element in List[String] in Scala
I'm still learning the basics and I have a question.
I have a function
def reverse(s: String): String = {
s.reverse
}
Now I have a List[String] and I want to reverse each String element.
I've ...
0
votes
1answer
223 views
Get head item and tail items from scala list
Is there a method in scala to get the (single) head element of a List or Seq and the (collection) tail of the list? I know there's
def splitAt(n: Int): (List[A], List[A])
and I can easily grab the ...
-1
votes
4answers
165 views
Scala List Match Regex [closed]
I have a list of strings and a regex pattern. I would like to filter the the items from the list that don't match the regex. I am using the following code which doesn't seem to work:
val matching = ...
4
votes
3answers
185 views
Scala remove elements from list of tuples
I'm new to scala and I'm trying to remove from a list of tuples elements which their first value is bigger than the second.
For example, From the list:
val list = ...
6
votes
3answers
312 views
Convert a Scala list to a tuple?
How can I convert a list with (say) 3 elements into a tuple of size 3?
For example, let's say I have val x = List(1, 2, 3) and I want to convert this into (1, 2, 3). How can I do this?
0
votes
1answer
67 views
Types of objects in Scala's Lists
I was under impression that every object in a Scala List must have the same type and if we need to have a collection of something of different types, tuples should be used.
From Scala's ...
1
vote
3answers
72 views
How to pair similar objects from two sorted lists?
I'm trying to learn Scala (2.10). In this exercise, I have a case class:
case class Entry(name: String, version: String) { }
I have two sequences of such objects sorted by their name attribute:
S1 ...
1
vote
4answers
506 views
Scala pattern matching: How to match on an element inside a list?
Is it possible to rewrite the following code using Scala pattern matching?
val ls: List[String] = ??? // some list of strings
val res = if (ls.contains("foo")) FOO
else if (ls.contains("bar")) ...
3
votes
2answers
95 views
Getting values from Map given list of keys in Scala
Basically I need to get a set of values from a map for a keys in a given list (in the same order keys are given).
val kv = Map("k3" -> "v3", "k1" -> "v1", "k2" -> "v2")
val ks = List("k1", ...
0
votes
4answers
96 views
Scala Iterating Tuple Map
I have a map of key value pairs and I am trying to fetch the value given a key, however although it returns me a value it comes along with some, any idea how can I get rid of it?
My code is:
val ...
0
votes
2answers
136 views
Scala JSON to Map
I have a JSON file, something like this in a file which I am reading
{
"created_at": "Sun Jan 27 06:00:11 +0000 2013",
"id": 295410858505420800,
"id_str": "295410858505420800",
"text": "RT ...
1
vote
2answers
142 views
How to split a List to tuples?
I am trying to define a function, that would take a list and split it down n without using take, drop or grouped
def mySplit[X](n: Int, xs: List[X]): (List[X], List[X]) = {
if (n <= 0) (Nil, ...
0
votes
2answers
66 views
On splitting Scala list, clarification needed
Given
println(split(7, (1 to 15).toList))
When running
def split[X](n: Int, xs: List[X]): (List[X], List[X]) = {
if (n <= 0) (Nil, xs)
else if (n >= xs.size) (xs, Nil)
else {
...
1
vote
3answers
150 views
Run length encoding using Scala
Given a list of elements of which some are repeated multiple times, i need to produce a new list with tuples, where each tuple contains number of times an element is repeated in a row and an element ...
1
vote
4answers
134 views
How to find count of repeatable elements in scala list
Suppose you have a List(1,1,1,4,4,1) and have to calculate how many times is element that is a head of the list consecutively repeated. In the example above, method should return 3. In this method we ...
1
vote
3answers
117 views
Scala extract from list based on condition
I have a list of words as a list an I would like to extract words that are maybe of lengths between 5 and 10, I am using the following code but doesn't seem to work. Also i can use only val and not ...




