4
votes
2answers
161 views

Is undefined a partial list in Haskell?

Is undefined a partial list in Haskell? I know that [1,2:undefined] is partial but what about about undefined alone?
7
votes
3answers
137 views

Change element of list if it holds against some condition or add a new one if not, using Data.Lens

I have a list of records and need a function which searches the list for a record with a given name and modify the value of this record OR if no record matches append a new record to the resulting ...
6
votes
6answers
138 views

Haskell. Keeping track of indices in order to generate a new list

I decided to learn Haskell and also learn to think in a more functional way, so I'm trying to solve very simple exercises trying to use a good approach in this paradigm. I'm trying to achieve this ...
0
votes
3answers
90 views

how to use an incomplete list in its condition

I know.. The title isn't explaining well.. if you have a better title tell me in a comment..I'm making a prime numbers generator for fun and learning purposes..here's my code: divisors x xs = [ y | y ...
2
votes
3answers
181 views

Haskell <<loop>>

With getIndex xs y I want the index of the first sublist in xs whose length is greater than y. The output is: [[],[4],[4,3],[3,5,3],[3,5,5,6,1]] aufgabe6: <<loop>> why getIndex does ...
0
votes
1answer
124 views

Haskell - list comprehension can't enumerate N × N

I have to write a function which returns a list of all pairs (x,y) where x, y ∈ N , and: x is the product of two natural numbers (x = a • b, where a, b ∈ N) and x is really bigger than 5 but really ...
0
votes
3answers
85 views

Haskell - List Comprehension - get Input-Elements

I have some problem with list comprehension, if the input is a list. In these all III excercises it's not allowed to use: map, filter and concat!!! Part I Requirements: A funktion f1 gets a list ...
3
votes
1answer
107 views

Multiply list elements in Haskell

I want a function which takes the product of the inits of a list and duplicates its elements. For example the list is: [2, 3, 4, 5]. The product of its inits : [1, 2, 6, 24, 120]. At the end the ...
3
votes
3answers
170 views

Haskell: Iterate over all (Row, Column) possibilities?

This will be a TicTacToe implementation: data Row = A | B | C deriving (Show, Read, Eq, Ord, Enum, Bounded) data Column = X | Y | Z deriving (Show, Read, Eq, Ord, Enum, Bounded) type Pos = (Row, ...
0
votes
1answer
123 views

Haskell: Using map with a fuction that returns a list?

I have this encode function: class Encode a where encode :: a -> [Bit] and I have problems writing a function that encodes a list of type a to a list of bits. I want to recursively encode the ...
2
votes
1answer
102 views

Haskell - Incrementation fails

I'm in a big trouble with incrementation of a counter in this code. It doesn't increment. Edit: It works now fine! Could you please tell me where the problem ist and how can I solve it? ...
1
vote
3answers
86 views

Haskell multidimensional list : Beginner problems

I want to delete every string in a list which starts with "h". ["hawrw", "basw", "HasD" , "hgkas"] => ["basw", "HasD"] My code is: kat (x:xs) = if head x == "h" then kat(xs) else x ++ kat(xs) ...
0
votes
2answers
51 views

Haskell List Recursion mistake?

Hey I am pretty new to Haskell. So I want to eliminate all integers which are greater than 500 in a list. import Data.List leng x = if(head x > 500) then leng(tail x) else [head x]++leng(tail x) ...
0
votes
2answers
150 views

Haskell - Does a replace function exist?

I have to make three functions for replacing of flat strings and in lists. I don't know, whether there is a replace function like in other languages. I searched for that however unfortunately without ...
1
vote
2answers
101 views

Haskell - make a 2D list out of a 1D list

I have to make a 2D list [[Int]]. out of a 1D list [Int] in Haskell. The function should take to args "r" Int indicates the count of rows and a 1D list, which should be sliced into rows with the ...
3
votes
3answers
135 views

Haskell - check whether a 2D list has the same number of rows as columns

I have a 2D list [[Int]] in Haskell and I want to check two things: whether the list has the sam number of rows as columns whether the rows have the sam number of elements For instance: [[1,2,3], ...
4
votes
2answers
107 views

Replacing strings with strings from a list

I am trying to write a function that takes a list of searchwords, a list of replacementwords and a string on which those will be used. listReplace :: [String] -> [String] -> String -> ...
0
votes
2answers
106 views

Haskell count occurrences in two dimensional lists

I have to count the occurrences in a two dimensional (2D) list [[Int]], but I get errors. What I tried so for is counting 1D. It works fine like this: instances::Int->[Int]->Int instances x [] ...
2
votes
3answers
112 views

Haskell - Capitalize all letters in a list [String] with toUpper

I have a list [String] the task ist to remove those elements in the list, which have "q" or "p" and then capitalize all letters in the list with toUpper. What I tried yet is as follow: delAndUpper ...
2
votes
3answers
123 views

Haskell - filter string list based on some conditions

I am new in this comunity. I learn Haskell and have difficulties with Haskell-coding. I hope you can help me. I searched here and in Google, without any success. My problem ist as fowllows: I want ...
0
votes
2answers
141 views

How to replace more than one element at the same time in a String (Haskell)

i want to take 2 lists for example like this; find=["Hou","House","Mouse"] repl=["Mou","Bird","House"] So when i give a text like that; "The House with Mouse is big" Output should be this; "The ...
6
votes
1answer
114 views

haskell implementation of “zip” strange error

I have the following implementation of the zip function in haskell myzip (a:b) (z:g) | b == [] = [] | g == [] = [] | otherwise = (a,z) : myzip b g When I load it into ghci, I get the ...
3
votes
4answers
118 views

How to print part of a list on a new line in Haskell

This may be a silly question, but I'm very new to Haskell. (I just started using it a couple of hours ago actually.) So my problem is that I have a list of 4 elements and I need to print two on one ...
1
vote
3answers
87 views

Creating 2 dimensional list matrix

How do you create a list-based matrix of 1's with given row and column counts? For example, like: row=3,column=4 -> [[1,1,1,1],[1,1,1,1],[1,1,1,1]]
-2
votes
2answers
109 views

Haskell Defining a List and List Comprehension

Good morning! I am trying to define a list that takes in all possible Address types, which I have previously defined, and use list comprehension to do so. Here's what I've got for earlier ...
3
votes
2answers
105 views

Haskell - Filtering Lists by Comparison

I need to filter a list with a mask in Haskell. It applies the function to an element of the mask list and the corresponding element in the data list, and if the function returns true, the ...
0
votes
3answers
97 views

List included in another list in haskell

I want to see if a list is included in another list and extract that list from a list of lists, for example i want to see if ["bc","abc"] is included in ...
3
votes
2answers
111 views

Index of element in list in Haskell

How can I get the index of the element I am at in haskell when I am using map ? For example I have this list l = "a+bc?|(de)*fg|h" and I want to know the exact index of the element I am at when I ...
0
votes
1answer
100 views

Index of an element in haskell

I have these 2 lists [@,a,@,b,c,@,@,@,(de),@,@,@,f,g,@,h] and ["","","+","","","?","|","","","","","*","","","|",""] and i want by using scanl or map function to cover the second list and also to ...
0
votes
0answers
72 views

Binding two lists in haskell

I want to create a variable based on two lists based on this string "a+bc?|(de)*fg|h", the lists are : [@,a,@,b,c,@,@,@,(de),@,@,@,f,g,@,h] and ["","","+","","","?","|","","","","","*","","","|",""], ...
1
vote
1answer
158 views

Haskell finding information in a database

I currently have a database with this information: type Title = String type Actor = String type Cast = [Actor] type Year = Int type Fan = String type Fans = [Fan] type Period = (Year, Year) type Film ...
0
votes
1answer
78 views

Transform from [[Char]] to own data type in Haskell

scanl (\exp y -> scanl (\x -> if (isLetter x) then update exp (Literal x) "" else if x=='+' then update exp Epsilon "+" else if x=='*' then update exp ...
0
votes
0answers
107 views

Scanl in Haskell

scanl (\exp y -> scanl (\x -> if (isLetter x) then update exp (Literal x) "" else if x=='+' then update exp Epsilon "+" else if x=='*' then update exp ...
8
votes
3answers
318 views

Haskell - Removing duplicates from a list

I'm trying to define a function which will remove duplicates from a list. So far I have a working implementation: rmdups :: Eq a => [a] -> [a] rmdups [] = [] rmdups (x:xs) | x `elem` xs = ...
2
votes
1answer
62 views

Function to remove list of tuple with same elements but different order

Say I have list of tuples such as [(1,2),(2,1),(3,5)] How would I define a function so that a tuple with similar elements but different ordering is removed? So the list becomes [(1,2),(3,5)]
1
vote
3answers
112 views

Haskell List concatenation Inferred Type

Trying to replace an element within a list at a given point with a new element then return the element. setelt :: Int -> [a] -> a -> [a] setelt x (yf:(y:yl)) z | x == (length yf) = ...
6
votes
3answers
271 views

Check if list is flat in Haskell

In The Little Schemer there is a function to check, whether the list is flat: (define lat? (lambda (l) (cond ((null? l) #t) ((atom? (car l)) (lat? (cdr l))) (else #f)))) I'm ...
0
votes
1answer
43 views

Rvar to String when randomizing list comprehension

Hey so im trying to pick a random element from this list of list Strings however when i try to add choice to the list comprehension ... {-# LANGUAGE UnicodeSyntax #-} import System.Random(randomRIO) ...
4
votes
1answer
89 views

Minimum or small enough

I am writing Haskell solver for simple board game. I have this function: bestMove :: Board -> (Int,Int) bestMove brd = minimumBy (comparing $ length.choices brd) (remaining brd) Basically ...
1
vote
1answer
85 views

List from Int to specific Strings

What would I do if I wanted to turn a list of Ints such as [1,2,3] to ["∧","∨","→"] (so if there is a '1' turn it into the '∧' etc...)
3
votes
3answers
156 views

trying hard to take the last element from a list (Haskell)

Here is my code, however, i've got no idea how is it wrong, here is my codes: ll :: [a] -> a ll lis = case lis of (_:xs) -> ll xs [] -> error"xx" and there is no error message from ...
0
votes
3answers
247 views

Haskell adding element to an existing list

The function I want to write is to enable the user to type their name in and the film they would like to become a fan of. This is the current code i'm using: type Title = String type Actor = String ...
1
vote
2answers
117 views

Haskell- IO String get multiple Lines

I am trying to write a function that gets multiple string inputs and terminates on an empty line ('\n') I have following getLines :: IO [String] getLines = do x <- getLine if x == "" ...
3
votes
4answers
195 views

Haskell- Two lists into a list of tuples

I am trying to implement a function (described below) that takes two lists (each or both may be infinite) and return a list of tuples of all the possible pairs of elements between the lists zipInf :: ...
0
votes
3answers
304 views

Film database in Haskell

Currently trying to solve 2 main questions in my haskell program. display all films that a given user is a fan of display all the films of a given actor that were released during a particular period ...
7
votes
3answers
206 views

Haskell- Find element in a list and return its position

So i need to make a function described as invFib :: Integer -> Maybe Integer which takes an Integer and looks for it in the fibonacci sequence (as described by the function below) fibs :: ...
3
votes
4answers
170 views

Eliminating the duplicates completely in Haskell

I have this code but it does not do what I want totally, I takes a list of tuples; [(3,2),(1,2),(1,3),(1,2),(4,3),(3,2),(1,2)] and gives [(1,3),(4,3),(3,2),(1,2)] but I want it to give ...
3
votes
3answers
153 views

Extending a list of list in Haskell

Is there anyway that I can extend a list of list in Haskell? I'm trying to write a function that generates [1,2,2,3,3,3,4,4,4,4.....] which is basically a 1 one, 2 twos, 3 threes etc. My Attempt: ...
0
votes
2answers
77 views

Pattern Match Failure in List in Haskell

I have one problem with pattern matching. When I give input to (x:y:ys) the list containing 3 elements, hugs complain that there is: pattern match failure. I guess that the problem is here ...
9
votes
4answers
417 views

Initializing algebraic data type from list

I'm a fairly new Haskell programmer and I'm trying to figure out how to get some values into an algebraic data type. I have a record data type: data OrbitElements = OrbitElements { epoch :: Double, ...

1 2 3 4 5 11