Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/akarachen/prime

一百万以内判断质数
https://github.com/akarachen/prime

Last synced: 5 days ago
JSON representation

一百万以内判断质数

Awesome Lists containing this project

README

        

# Prime

> 看个乐呵行了,有人会用这玩意么?反正我不用。

怪不得说程序员是个体力活呢,今年年初开始写代码,三百万行,完成了人生中第一个判断一百万以内的质数的项目,代码传到 [Github](https://github.com/akarachen/prime) 了,后续会更新一千万,一亿以内的判断质数的项目,欢迎大家在 github 上 star 我的项目。

[梗来源](./motivation.png)

## 用法

```html

console.log(isPrime(1000)); // false

```

## 生成器用法

```shell
node write 1000000
```