Skip to content

Commit

Permalink
dotnet format
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 5, 2024
1 parent 73e9271 commit 6b096f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion csharp/Euler/include/utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public static byte[] GetDataFileBytes(string name)

public static object GetAnswer(ulong n)
{
foreach (string line in GetDataFileText("answers.csv").Split(new [] { '\r', '\n' })) {
foreach (string line in GetDataFileText("answers.csv").Split(new[] { '\r', '\n' }))
{
var arr = line.Split("\t");
if (arr[0] != n.ToString()) continue;
if (arr[1] == "str") return arr[3];
Expand Down

0 comments on commit 6b096f4

Please sign in to comment.