Skip to content

Commit d5a22f8

Browse files
question title updated
1 parent c4ce016 commit d5a22f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Searching-Algos/binary-search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Write a program to check if value/target exists or not in ascending array in O(log n) time complexity ?
1+
// Write a program to check if value/target exists or not in ascending array in O(log n) time complexity?
22
const customInArray = (sortedArray, key) => {
33
let start = 0;
44
let end = sortedArray.length - 1;

Sorting-Algos/bubble--sort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Custom sorting program in JS via Bubble Sort ?
1+
// Custom sorting program in JS via Bubble Sort?
22
let unSortArr = [4,-1,34,09,-9,103]
33

44
const sortArr = (inputArr) => {

String-Questions/plaindrome-program.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Write a program to check if a string or word or number is palindrome ?
1+
// Write a program to check if a string or word or number is palindrome?
22
const isPlaindrome = (inputChar) => {
33
let str = inputChar.toString();
44
let resultWord = '';

0 commit comments

Comments
 (0)