mirror of
https://github.com/TheAlgorithms/Ruby
synced 2025-01-15 03:43:22 +01:00
remove unused variable
This commit is contained in:
parent
1c20c18b43
commit
5ddb7345bf
1 changed files with 2 additions and 1 deletions
|
@ -166,7 +166,8 @@ class Node
|
||||||
end
|
end
|
||||||
|
|
||||||
obj = DoubleList.new
|
obj = DoubleList.new
|
||||||
param_1 = obj.get(1)
|
obj.get(1)
|
||||||
|
|
||||||
obj.add_at_head(2)
|
obj.add_at_head(2)
|
||||||
obj.print_values
|
obj.print_values
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue