Browse Source

test: adding subject and main

pull/2637/head
amin 3 months ago committed by zanninso
parent
commit
6f39f297fd
  1. 17
      subjects/java/checkpoints/first-unique/ExerciseRunner.java
  2. 50
      subjects/java/checkpoints/first-unique/README.md

17
subjects/java/checkpoints/first-unique/ExerciseRunner.java

@ -0,0 +1,17 @@
public class ExerciseRunner {
public static void main(String[] args) {
FirstUnique firstUnique = new FirstUnique();
// Test case 1
String s1 = "leetcode";
System.out.println("First unique character: " + firstUnique.findFirstUnique(s1)); // Expected output: 'l'
// Test case 2
String s2 = "loveleetcode";
System.out.println("First unique character: " + firstUnique.findFirstUnique(s2)); // Expected output: 'v'
// Test case 3
String s3 = "aabbcc";
System.out.println("First unique character: " + firstUnique.findFirstUnique(s3)); // Expected output: '_'
}
}

50
subjects/java/checkpoints/first-unique/README.md

@ -0,0 +1,50 @@
## First Unique
### Instructions
Write a function that finds the first non-repeating character in a string. If there is no such character, return an underscore (\_).
### Expected Class
```java
public class FirstUnique {
public char findFirstUnique(String s) {
// Implementation to find the first non-repeating character
}
}
```
### Usage
Here is a possible `ExerciseRunner.java` to test your class:
```java
public class ExerciseRunner {
public static void main(String[] args) {
FirstUnique firstUnique = new FirstUnique();
// Test case 1
String s1 = "leetcode";
System.out.println("First unique character: " + firstUnique.findFirstUnique(s1)); // Expected output: 'l'
// Test case 2
String s2 = "loveleetcode";
System.out.println("First unique character: " + firstUnique.findFirstUnique(s2)); // Expected output: 'v'
// Test case 3
String s3 = "aabbcc";
System.out.println("First unique character: " + firstUnique.findFirstUnique(s3)); // Expected output: '_'
}
}
```
### Expected Output
```shell
$ javac *.java -d build
$ java -cp build ExerciseRunner
First unique character: l
First unique character: v
First unique character: _
$
```
Loading…
Cancel
Save