Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Haskell problem Skip every other prime in a list. Create a function named problem1. Use a list comprehension for the main function. This function will

Haskell problem

Skip every other prime in a list.

Create a function named problem1. Use a list comprehension for the main function. This function will take a single integer parameter. It indicates the number of primes that will be the final list. The final solution will output a list of every other prime. problem1 10 --> [2,5,11,17,23,31,41,47,59,67] problem1 7 --> [2,5,11,17,23,31,41]

I have an isPrime function that figures out if the funciton is prime. This is the code I have but it messes up at 23-29 for some reason because I get [2,5,11,17,23,29,41,47,53,59] instead of [2,5,11,17,23,31,41,47,59,67] when entering problem1 10.

problem1 :: Int -> [Int]

problem1 n = take n [x | x <- [2,5..], isPrime x]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The World Wide Web And Databases International Workshop Webdb 98 Valencia Spain March 27 28 1998 Selected Papers Lncs 1590

Authors: Paolo Atzeni ,Alberto Mendelzon ,Giansalvatore Mecca

1st Edition

3540658904, 978-3540658900

More Books

Students also viewed these Databases questions

Question

What Is acidity?

Answered: 1 week ago

Question

Explain the principles of delegation

Answered: 1 week ago

Question

State the importance of motivation

Answered: 1 week ago

Question

Discuss the various steps involved in the process of planning

Answered: 1 week ago

Question

What are the challenges associated with tunneling in urban areas?

Answered: 1 week ago

Question

Writing a Strong Introduction

Answered: 1 week ago