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

Melissa O'Hearn BinarytoDecimal.rb #27

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
14 changes: 14 additions & 0 deletions Melissa O'Hearn BinarytoDecimal.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# A method named `binary_to_decimal` that receives as input an array of size 8.
# The array is randomly filled with 0’s and 1’s.
# The most significant bit is at index 0.
# 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.
# def binary_to_decimal(binary_array)
# raise NotImplementedError
# end

def binary_to_decimal(bin_array)
decimal = (bin_array[7] * 1) + (bin_array[6] * 2) + (bin_array[5] * 4) + (bin_array[4] * 8) + (bin_array[3] * 16) + (bin_array[2] * 32) + (bin_array[1] * 64) + (bin_array[0] * 128)
return decimal
end
34 changes: 34 additions & 0 deletions array_equals.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Determines if the two input arrays have the same count of elements
# and the same integer values in the same exact order




def array_equals(array1, array2)
if array1 == nil && array2 == nil
return true
elsif array1 == nil || array2 == nil
return false
end



if array1.length != array2.length
return false

end


array1.length.times do |index|

if array1[index] != array2[index]
return false
end
end




return true

end