Skip to content

Commit

Permalink
Update ALGORITHM.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pgujjula authored Apr 5, 2024
1 parent 04fc94a commit aae7297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/ALGORITHM.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,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 aae7297

Please sign in to comment.