Let's say the first N integers divisible by 3 starting with 9.
I'm sure there is some one line solution using lambdas, I just don't know it that area of the language well enough yet.
|
|
Let's say the first N integers divisible by 3 starting with 9. I'm sure there is some one line solution using lambdas, I just don't know it that area of the language well enough yet.
|
|||
|
|
|
|
Just to be different (and to avoid using a where statement) you could also do:
Update This also has the benefit of not running out of numbers. |
|||
|
|
|
|
Using Linq:
Also easily parallelizeable using PLinq if you need:
|
||
|
|
|
|
|
|||
|
|
|
|
|
|||
|
|
|
|
I can't say this is any good, I'm not a C# expert and I just whacked it out, but I think it's probably a canonical example of the use of
|
||
|
|
|
|
You have to iterate through 0 or 1 to N and add them by hand. Or, you could just create your function f(int n), and in that function, you cache the results inside session or a global hashtable or dictionary. Pseudocode, where ht is a global Hashtable or Dictionary (strongly recommend the later, because it is strongly typed.
Just a side note. If you do this type of functional programming all the time, you might want to check out F#, or maybe even Iron Ruby or Python. |
||
|
|
|
|
I want to see how this solution stacks up to the above Linq solutions. The trick here is modifying the predicate using the fact that the set of The only problem with this solution is that it has the side effect of making your implementation depend on the specific pattern you choose (and not all patterns have a suitable predicate). But it has the advantage of:
Besides, no matter what pattern you choose, you will always need to modify the predicate, so you might as well make it mathematically efficient:
edit: I just want to illustrate how you could use this method with a
You can use it with |
|||
|
|