Skip to content

Commit

Permalink
squash typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Aug 4, 2024
1 parent edf7954 commit 9f7d98a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csharp/Euler/p0022.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class p0022 : IEuler
public object Answer()
{
int answer = 0;
string[] names = Utilities.getDataFileText("p0022_names.txt").Replace("\"", "").Split(',');
string[] names = Utilities.GetDataFileText("p0022_names.txt").Replace("\"", "").Split(',');
names.Sort();

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (2, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (3, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (5, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (6, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (7, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (8, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (9, ubuntu-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (6, macos-latest)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (6, macos-13)

No overload for method 'Sort' takes 0 arguments

Check failure on line 31 in csharp/Euler/p0022.cs

View workflow job for this annotation

GitHub Actions / csharp (6, windows-latest)

No overload for method 'Sort' takes 0 arguments
for (int i = 0; i < names.Length; i += 1)
{
Expand Down

0 comments on commit 9f7d98a

Please sign in to comment.