Skip to content

Commit 95b3e1c

Browse files
committed
Rename TwoSum
1 parent 44c11e6 commit 95b3e1c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3621,12 +3621,12 @@ In order to achieve greater coverage and encourage more people to contribute to
36213621
</a>
36223622
</td>
36233623
<td> <!-- Java -->
3624-
<a href="./src/java/AddTwoNumbers.java">
3624+
<a href="./src/java/TwoSum.java">
36253625
<img align="center" height="25" src="./logos/java.svg" />
36263626
</a>
36273627
</td>
36283628
<td> <!-- Python -->
3629-
<a href="./src/python/soma_dois_numeros.py">
3629+
<a href="./src/python/two_sum.py">
36303630
<img align="center" height="25" src="./logos/python.svg" />
36313631
</a>
36323632
</td>
@@ -3651,7 +3651,7 @@ In order to achieve greater coverage and encourage more people to contribute to
36513651
</a>
36523652
</td>
36533653
<td> <!-- Rust -->
3654-
<a href="./src/rust/soma_dois_numeros.rs">
3654+
<a href="./src/rust/two_sum.rs">
36553655
<img align="center" height="25" src="./logos/rust.svg" />
36563656
</a>
36573657
</td>

src/java/AddTwoNumbers.java renamed to src/java/TwoSum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import java.util.List;
44

55
// Utilized OpenJDK 17.0.3
6-
public class AddTwoNumbers {
6+
public class TwoSum {
77
/**
88
* This program takes a list of numbers and checks if there are two numbers whose sum is equal to
99
* the expected value.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)