100 Days of Code Day 66
Armstrong Numbers are where each digit of a number taken to the power of the number of digits in the number adds up to the number itself. That was today’s C# exercise. I decided to try using LINQ, and it looks like the other community solutions did too. To be honest theirs were probably a bit better than mine (but not by a lot).
Ok, for the new interpreter, I noticed nuget was throwing some insecure warnings on Sprache. I don’t really love coding in it, so I am going to let it go. I restarted and worked on the lexer today. Just numbers, basic math/logical operations, and identifiers. I am largely just iterating over regular expressions for each token type.
