Skip to content

Commit 83c08d8

Browse files
add 237 solution[js]
1 parent cba8571 commit 83c08d8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
const deleteNode = function(node){
2+
node.val = node.next.val;
3+
node.next = node.next.next;
4+
}

0 commit comments

Comments
 (0)