Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Semret Nicodimos - Edges - Binary to Decimal conversion method #25

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion lib/binary_to_decimal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,29 @@
# The least significant bit is at index 7.
# Calculate and return the decimal value for this binary number using
# the algorithm you devised in class.

# first way to do it taking out reverse
# def binary_to_decimal(binary_array)
# decimal = 0
# count = 7
#
# binary_array.each do |num|
# decimal += (num * (2**count))
# count -= 1
# end
#
# return decimal
# end

# Using times loop and count

def binary_to_decimal(binary_array)
raise NotImplementedError
decimal = 0
count = binary_array.length

count.times do |index|
decimal += (binary_array[index] * (2**(count-1-index)))
end

return decimal
end
1 change: 1 addition & 0 deletions specs/binary_to_decimal_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require 'minitest/autorun'
require 'minitest/reporters'
require 'minitest/pride'
require_relative '../lib/binary_to_decimal'

describe "binary to decimal" do
Expand Down