Skip to content

Commit

Permalink
chore: add initial files for Minimum Spanning Tree algorithm
Browse files Browse the repository at this point in the history
Rf #5
  • Loading branch information
cassiosantana committed Jul 15, 2024
1 parent 220c876 commit 051ebb5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/algorithms_ruby/minimum_spanning.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# frozen_string_literal: true

# Implementation of the algorithm found in:
# https://www.geeksforgeeks.org/problem-solving-minimum-spanning-trees-kruskals-prims/

module AlgorithmsRuby
class MinimumSpanning < Base

end
end
4 changes: 4 additions & 0 deletions spec/algorithms_ruby/minimum_spanning_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# frozen_string_literal: true

RSpec.describe AlgorithmsRuby::MinimumSpanning do
end

0 comments on commit 051ebb5

Please sign in to comment.