Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using notepad++ and winGHCi page please List patterns 1. Write a function: headPlusOne :: [Int] => Int which returns the first element plus one for

image text in transcribed

Using notepad++ and winGHCi page please

List patterns 1. Write a function: headPlusOne :: [Int] => Int which returns the first element plus one for a non-empty list, and 0 for an empty list. (e.g. headPlusOne [5,7,2,4] = 6.) 2. Write a polymorphic function: duplicateHead :: [a] -> [a] which adds an extra copy of the first element at the beginning of the list (or returns [] for an empty list). (For example, duplicateHead (5,7] = [5,5,7].)

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

More Books

Students also viewed these Databases questions