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

Jackie's Binary to Decimal and Print Binary #45

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
10 changes: 9 additions & 1 deletion lib/binary_to_decimal.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,13 @@
# 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
decimal_value = 0

idx = binary_array.length - 1
binary_array.length.times do |i|
decimal_value += (binary_array[i] * (2 ** idx))
idx -= 1
end

decimal_value
end
40 changes: 40 additions & 0 deletions lib/printbinary.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#uses rand method, which might be cheating?
def print_binary
all_values = []

until all_values.length == 16
four_bits = []
4.times do
four_bits << rand(0..1).to_s
end
if !all_values.include? four_bits
all_values << four_bits
end
end

all_values.map! {|sequence| sequence.join }

puts "#{all_values}"
end

def print_binary2
bits = []
binary = ""

16.times do |num|
binary = ""
until binary.length == 4
if num % 2 == 0
binary = "0" + binary
else
binary = "1" + binary
end
num = num >> 1
end
bits << binary
end

puts bits
end

print_binary2