Return First Number Equal to Its Index in Array Using JavaScript

AmitDiwan
Updated on 20-Apr-2021 09:09:37

141 Views

ProblemWe are required to write a JavaScript function that takes in an array of number. Our function should return that first number from the array whose value and 0-based index are the same given that there exists at least one such number in the array.ExampleFollowing is the code − Live Democonst arr = [9, 2, 1, 3, 6, 5]; const findFirstSimilar = (arr = []) => {    for(let i = 0; i < arr.length; i++){       const el = arr[i];       if(el === i){          return i;       };    }; }; console.log(findFirstSimilar(arr));Output3

Encrypting a String Based on an Algorithm Using JavaScript

AmitDiwan
Updated on 20-Apr-2021 09:08:03

723 Views

ProblemWe are required to write a JavaScript function that takes in a string and encrypts it based on the following algorithm −The string contains only space separated words.We need to encrypt each word in the string using the following rules−The first letter needs to be converted to its ASCII code.The second letter needs to be switched with the last letter.Therefore, according to this, the string ‘good’ will be encrypted as ‘103doo’.ExampleFollowing is the code − Live Democonst str = 'good'; const encyptString = (str = '') => {    const [first, second] = str.split('');    const last = str[str.length - 1]; ... Read More

Difference Between Microkernel and Monolithic Kernel

AmitDiwan
Updated on 20-Apr-2021 09:02:48

2K+ Views

In this post, we will understand the difference between microkernel and monolithic kernel −MicrokernelIt is smaller in size.In this kernel, the services are kept in a separate address space.It executes slowly in comparison to monolithic kernel.It can be extended easily.If a service crashes, it effects the working of the microkernel.The code to build a microkernel is large.Examples of microkernel include: QNX, Symbian, L4Linux, Singularity, K42, Integrity, PikeOS, HURD, Minix, Mac OS X, and Coyotos.Monolithic KernelIn monolithic kernel, both user services and kernel services are kept in the same address space.Monolithic kernel is larger than microkernel.It executes quickly in comparison to ... Read More

Encrypting a String Based on an Algorithm in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:25:34

287 Views

ProblemWe are required to write a JavaScript function that takes in a string and encrypts it based on the following algorithm −The string contains only space separated words.We need to encrypt each word in the string using the following rules −The first letter needs to be converted to its ASCII code.The second letter needs to be switched with the last letter.Therefore, according to this, the string ‘good’ will be encrypted as ‘103doo’.ExampleFollowing is the code − Live Democonst str = 'good'; const encyptString = (str = '') => {    const [first, second] = str.split('');    const last = str[str.length - ... Read More

Find First Non-Consecutive Number in an Array in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:23:41

412 Views

ProblemWe are required to write a JavaScript function that takes in an array of numbers. Our function should return that first element from the array which is not the natural successor of its previous element.It means we should return that element which is not +1 its previous element given that there exists at least one such element in the array.ExampleFollowing is the code − Live Democonst arr = [1, 2, 3, 4, 6, 7, 8]; const findFirstNonConsecutive = (arr = []) => {    for(let i = 0; i < arr.length - 1; i++){       const el = arr[i]; ... Read More

Check If Decimals Share At Least Two Common 1 Bits in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:21:38

138 Views

ProblemWe are required to write a JavaScript function that takes in two numbers. Our function should return true if the numbers have 1 in the binary representation at the same index twice, false otherwise.ExampleFollowing is the code − Live Democonst num1 = 10; const num2 = 15; const checkBits = (num1 = 1, num2 = 1) => {    let c = num1.toString(2).split('');    let d = num2.toString(2).split('');    if(c.length > d.length){       c = c.slice(c.length - d.length);    }else{       d = d.slice(d.length - c.length);    };    let count = 0;    for(let i = ... Read More

Limit String Length in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:18:30

1K+ Views

ProblemWe are required to write a JavaScript function that takes in a string and a number. Our function should return the truncated version of the given string up to the given limit followed by "..." if the result is shorter than the original string otherwise our function should return the same string if nothing was truncated.ExampleFollowing is the code − Live Democonst str = 'Testing String'; const num = 8; const limitString = (str = '', num = 1) => {    const { length: len } = str;    if(num < len){       return str.slice(0, num) + '...';    }else{       return str;    }; }; console.log(limitString(str, num));OutputFollowing is the console output −Testing ...

Construct String from Character Matrix and Number Array in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:16:16

227 Views

ProblemWe are required to write a JavaScript function that takes in an n * n matrix of string characters and an array of integers (positive and unique).Our function should construct a string of those characters whose 1-based index is present in the array of numbers.Character Matrix −[    [‘a’, ‘b’, ‘c’, d’],    [‘o’, ‘f’, ‘r’, ‘g’],    [‘h’, ‘i’, ‘e’, ‘j’],    [‘k’, ‘l’, ‘m’, n’] ];Number Array −[1, 4, 5, 7, 11]Should return ‘adore’ because these are the characters present at the 1-based indices specified by number array in the matrix.ExampleFollowing is the code − Live Democonst arr = ... Read More

Return Square Root of a Number in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:12:09

186 Views

ProblemWe are required to write a JavaScript function that takes in an integer n and returns either −an integer k if n is a square number, such that k * k == n ora range (k, k+1), such that k * k < n and n < (k+1) * (k+1).ExampleFollowing is the code − Live Democonst num = 83; const squareRootRange = (num = 1) => {    const exact = Math.sqrt(num);    if(exact === Math.floor(exact)){       return exact;    }else{         return [Math.floor(exact), Math.ceil(exact)];    }; }; console.log(squareRootRange(num));OutputFollowing is the console output −[9, 10]

Return Decimal with 1s in Binary at Specified Indices in JavaScript

AmitDiwan
Updated on 20-Apr-2021 08:10:39

139 Views

ProblemWe are required to write a JavaScript function that takes in an array of unique non-negative integers. Our function should return a 32-bit integer such that the integer, in its binary representation, has 1 at only those indexes (counted from right) which are in the sequence.ExampleFollowing is the code − Live Democonst arr = [1, 2, 0, 4]; const buildDecimal = (arr = []) => {    const bitArr = Array(31).fill(0);    let res = 0;    arr.forEach(el => {       bitArr.splice((31 - el), 1, 1);    })    bitArr.forEach((bit, index) => {       res += (2 * (31-index) * bit);    });    return res; }; console.log(buildDecimal(arr));OutputFollowing is the console output −14

Advertisements