Skip to content

Commit

Permalink
Module names updated.
Browse files Browse the repository at this point in the history
  • Loading branch information
sonatsuer committed Oct 5, 2015
1 parent eb69a9d commit 9463483
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Problem01.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem1 where
module Problem01 where

-- Problem 1
-- Find the last element of a list.
Expand Down
2 changes: 1 addition & 1 deletion Problem02.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem2 where
module Problem02 where

-- Problem 2
-- Find the last but one element of a list.
Expand Down
2 changes: 1 addition & 1 deletion Problem03.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem3 where
module Problem03 where

-- Problem 3
-- Find the K'th element of a list. The first element in the list is number 1.
Expand Down
2 changes: 1 addition & 1 deletion Problem04.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem4 where
module Problem04 where

-- Problem 4
-- Find the number of elements of a list.
Expand Down
2 changes: 1 addition & 1 deletion Problem05.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem5 where
module Problem05 where

import DList

Expand Down
2 changes: 1 addition & 1 deletion Problem06.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem6 where
module Problem06 where

import Problem5 (myReverse)

Expand Down
2 changes: 1 addition & 1 deletion Problem07.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem7 where
module Problem07 where

-- Problem 7
-- Flatten a nested list structure.
Expand Down
2 changes: 1 addition & 1 deletion Problem08.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem8 where
module Problem08 where

-- Problem 8
-- Eliminate consecutive duplicates of list elements.
Expand Down
2 changes: 1 addition & 1 deletion Problem09.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module Problem9 where
module Problem09 where

import Data.List (group)

Expand Down

0 comments on commit 9463483

Please sign in to comment.