You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
amin 6f39f297fd test: adding subject and main 3 months ago
..
ExerciseRunner.java test: adding subject and main 3 months ago
README.md test: adding subject and main 3 months ago

README.md

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

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:

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

$ javac *.java -d build
$ java -cp build ExerciseRunner
First unique character: l
First unique character: v
First unique character: _
$