Last active
March 27, 2017 20:27
-
-
Save wieczorek1990/360a250641aed594782abc65e23d674d to your computer and use it in GitHub Desktop.
Solemnisation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
funcs = %w(do re mi fa so la si 𝕕o) | |
# funcs = %w(Do Re Mi Fa So La Si do re mi fa so la si 𝕕o) | |
intervals = funcs.permutation(2) | |
puts "Functions count: #{funcs.length}" | |
puts "Permutation count: #{intervals.to_a.length}" | |
last = nil | |
intervals.each do |a, b| | |
if last != a then | |
last = a | |
puts | |
end | |
puts "#{a} – #{b}" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment