Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pgujjula authored Apr 5, 2024
1 parent aae7297 commit c918eb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ zs :: [Int]
zs = 0 : concatMap (\i -> [i, -i]) [1..]

gaussianInts :: [Complex Int]
gaussianInts = map snd (applyMerge (\x y -> (x*x + y*y, x :+ y)) ints ints)
gaussianInts = map snd (applyMerge (\x y -> (x*x + y*y, x :+ y)) zs zs)
```

Square-free integers ([Wikipedia](https://en.wikipedia.org/wiki/Square-free_integer)):
Expand Down

0 comments on commit c918eb0

Please sign in to comment.