-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprac.js
More file actions
32 lines (32 loc) · 754 Bytes
/
prac.js
File metadata and controls
32 lines (32 loc) · 754 Bytes
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
/**
* @param {string} s
* @param {number} numRows
* @return {string}
*/
var convert = function(s, numRows) {
let count = 0,index = 0,diag=numRows-1, collection = [];
let i = 0, flag= false;
while(i < s.length){
if(collection.length < numRows){
collection.push([]);
}
collection[index].push(s.charAt(i));
if (index + 1 < numRows && !flag) {
index++;
}
else {
index--;
flag = true;
if(index <= 0){
flag = false;
}
}
i++;
}
let result = "";
collection.forEach((item) => {
result += item.join("");
})
return result;
};
console.log(convert("PAYPALISHIRING", 3));