Difference between revisions of "Euler problems/141 to 146"

From HaskellWiki
Jump to navigation Jump to search
m (Corrected the links to the Euler project)
(Deprecated)
Line 1: Line 1:
  +
This page is deprecated, because problems 147-150 have been added.
[[Category:Programming exercise spoilers]]
 
== [http://projecteuler.net/index.php?section=view&id=141 Problem 141] ==
 
Investigating progressive numbers, n, which are also square.
 
   
  +
See [[Euler problems/141 to 150|Questions 141 to 150]] instead.
Solution:
 
<haskell>
 
problem_141 = undefined
 
</haskell>
 
 
== [http://projecteuler.net/index.php?section=view&id=142 Problem 142] ==
 
Perfect Square Collection
 
 
Solution:
 
<haskell>
 
problem_142 = undefined
 
</haskell>
 
 
== [http://projecteuler.net/index.php?section=view&id=143 Problem 143] ==
 
Investigating the Torricelli point of a triangle
 
 
Solution:
 
<haskell>
 
problem_143 = undefined
 
</haskell>
 
 
== [http://projecteuler.net/index.php?section=view&id=144 Problem 144] ==
 
Investigating multiple reflections of a laser beam.
 
 
Solution:
 
<haskell>
 
problem_144 = undefined
 
</haskell>
 
 
== [http://projecteuler.net/index.php?section=view&id=145 Problem 145] ==
 
How many reversible numbers are there below one-billion?
 
 
Solution:
 
<haskell>
 
problem_145 = undefined
 
</haskell>
 
 
== [http://projecteuler.net/index.php?section=view&id=146 Problem 146] ==
 
Investigating a Prime Pattern
 
 
Solution:
 
<haskell>
 
problem_146 = undefined
 
</haskell>
 
 
[[Category:Tutorials]]
 
[[Category:Code]]
 

Revision as of 09:56, 18 September 2007

This page is deprecated, because problems 147-150 have been added.

See Questions 141 to 150 instead.