Skip to content

Commit

Permalink
日常
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunbeam-5 committed May 20, 2022
1 parent be912b0 commit 90330f5
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions 20220513/src/两数之和.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import java.util.Scanner;

public class 两数之和 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String arr = sc.nextLine();
long target = sc.nextLong();
for (int i = 0; i < arr.length(); i++) {
for (int j = 0; j < arr.length(); j++) {

}
}
}
}

0 comments on commit 90330f5

Please sign in to comment.