-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnonrep_ele.html
More file actions
41 lines (36 loc) · 1.27 KB
/
nonrep_ele.html
File metadata and controls
41 lines (36 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>First Non-Repeating Character</title>
</head>
<body>
<h1>First Non-Repeating Character</h1>
<input type="text" id="inputString" placeholder="Enter a string">
<button onclick="findNonRepeating()">Find</button>
<p id="result"></p>
<script>
function findNonRepeating() {
const str = document.getElementById('inputString').value;
const charCount = new Map();
for(let char of str) {
charCount.set(char, (charCount.get(char) || 0) + 1);
}
let firstNonRepeating = null;
for(let char of str) {
if(charCount.get(char) === 1) {
firstNonRepeating = char;
break;
}
}
const result = document.getElementById('result');
if(firstNonRepeating) {
result.textContent = `First non-repeating character: "${firstNonRepeating}"`;
} else {
result.textContent = "No non-repeating character found";
}
}
</script>
</body>
</html>