Created
April 24, 2021 22:53
-
-
Save naxmefy/5e826ee2092dc41212abadbbbd19add4 to your computer and use it in GitHub Desktop.
unique prime factors in range from a to b
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
require'prime' | |
gets | |
$<.map{|s|p (s.to_i..s[/ .+/].to_i).count{|n|n>0&&n.prime_division[1]}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment