Skip to content

Commit 7469fc0

Browse files
authored
Improved task 138
1 parent cc9adec commit 7469fc0

File tree

1 file changed

+1
-1
lines changed
  • src/main/ruby/g0101_0200/s0138_copy_list_with_random_pointer

1 file changed

+1
-1
lines changed

src/main/ruby/g0101_0200/s0138_copy_list_with_random_pointer/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ require_relative '../../com_github_leetcode/random/node'
7575

7676
# @param {Node} node
7777
# @return {Node}
78-
def copy_random_list(head)
78+
def copyRandomList(head)
7979
return nil if head.nil?
8080

8181
# First pass to create cloned nodes and insert them after the original nodes

0 commit comments

Comments
 (0)