Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
gems /
3.1.0 /
gems /
prime-0.1.2 /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
lib
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
Gemfile
167
B
-rw-r--r--
2022-04-12 11:11
LICENSE.txt
1.25
KB
-rw-r--r--
2022-04-12 11:11
README.md
1
KB
-rw-r--r--
2022-04-12 11:11
Rakefile
198
B
-rw-r--r--
2022-04-12 11:11
Save
Rename
# Prime Prime numbers and factorization library. ## Installation Add this line to your application's Gemfile: ```ruby gem 'prime' ``` And then execute: $ bundle Or install it yourself as: $ gem install prime ## Usage ```ruby require 'prime' # Prime is the set of all prime numbers, and it is Enumerable. Prime.take(4) #=> [2, 3, 5, 7] Prime.first(4) #=> [2, 3, 5, 7] Prime.each(7).to_a #=> [2, 3, 5, 7] # Determining whether an arbitrary integer is a prime number Prime.prime?(7) #=> true 8.prime? #=> false # Factorization in prime numbers Prime.prime_division(8959) #=> [[17, 2], [31, 1]] Prime.int_from_prime_division([[17, 2], [31, 1]]) #=> 8959 17**2 * 31 #=> 8959 ``` ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/ruby/prime. ## License The gem is available as open source under the terms of the [BSD-2-Clause](LICENSE.txt).