added test project for AdventOfCode.Extensions

This commit is contained in:
2025-12-14 16:26:21 +01:00
parent dc0d579697
commit 4a5eeb8cf0
4 changed files with 80 additions and 1 deletions
@@ -18,7 +18,7 @@ public static class EnumerableExtensions
{
var validIndex = false;
var currentIndex = 0;
foreach (var i in Range(0, count).Reverse())
for(var i = count - 1; i >= 0; i--)
{
currentIndex = i;
if (indices[i] != i + poolLength - count)