Skip to content

Commit

Permalink
create 2つのリストに共通する要素を調べる.
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhide committed Apr 17, 2017
1 parent 705df4f commit 8d1f8e4
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,17 @@
2つのリストに共通する要素を調べる
=================================

2つのリストに共通する要素を取得するには`Data.List``intersect`を使います。

```haskell
> import Data.List
> [1,2,3,4] `intersect` [2,4,6,8]
[2,4]
```

要素が複数ある場合は、返り値にも反映されます。

```haskell
> [1,2,2,3,4] `intersect` [6,4,4,2]
[2,2,4]
```

0 comments on commit 8d1f8e4

Please sign in to comment.