Skip to content

Commit f58bdb2

Browse files
authored
Update 1898-maximum-number-of-removable-characters.js
Using bitwise operation to get the middle value. Not converting the strings to array to keep the time complexity O(1).
1 parent 6ae6bb1 commit f58bdb2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

javascript/1898-maximum-number-of-removable-characters.js

+3-4
Original file line numberDiff line numberDiff line change
@@ -48,21 +48,20 @@ function isSubSet1(s, p) {
4848
*
4949
* Binary Search
5050
* n = length of string, k = length of removable
51-
* Time O(log(k)*n) | Space O(k)
51+
* Time O(log(k)*n) | Space O(1)
5252
* @param {string} s
5353
* @param {string} p
5454
* @param {number[]} removable
5555
* @return {number}
5656
*/
5757
var maximumRemovals = function(s, p, removable) {
58-
s = s.split('');
59-
p = p.split('');
58+
6059
let left = 0;
6160
let right = removable.length - 1;
6261
let k = 0;
6362

6463
while (left <= right) {
65-
const mid = Math.floor((left + right) / 2);
64+
const mid = (left + right) >> 1;
6665
const hash = new Set(removable.slice(0, mid + 1));
6766

6867
if (isSubSet(hash, s, p)) {

0 commit comments

Comments
 (0)