LINQ C# expressions
#3144
-
Is there a way to get CodeWars to recognize C# LINQ expressions. When I use code that works in Visual Studio, such as, int[].Sum() or bool[].Where(x => x), CodeWars tells me that there is no function named Sum or Where. |
Beta Was this translation helpful? Give feedback.
Answered by
hobovsky
Jan 15, 2024
Replies: 1 comment 1 reply
-
Codewars supports Linq and functions like |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gsicurtis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Codewars supports Linq and functions like
Sum
andWhere
. To use them, you need to add appropriateusing
to your solution, specificallyusing System.Linq;