Skip to content

Instantly share code, notes, and snippets.

Round 1: Coderpad
Question 1: Find the first non-repeating character in an array
java
Copy code
import java.util.HashMap;
import java.util.Map;
public class FirstNonRepeatingCharacter {
public static void main(String[] args) {