Raul

Results 3 comments of Raul

### General: ```javascript function findMaxLengthOfChars(input) { let current = ""; let r = []; Array.from(input).forEach((c, i, a) => { if (c === a[i - 1]) { current += c; }...

```js class Node { constructor(data) { this.data = data; this.next = null; } } class SinglyLinkedList { #firstNode; constructor() { this.#firstNode = null; } get firstNode() { return this.#firstNode; }...