LoginSignup
2
0

More than 3 years have passed since last update.

1行素数判定コード (Python3)

Last updated at Posted at 2020-03-07

1行素数判定コード

知人のmarienが1行素数判定のコードを作成してくれたのでその紹介です。
(このコードはとにかく1行で書くことを目的としたので計算速度とかは全く気にしておりません)

print('not sosu') if 0 in [(i + 1 + num) % num for i, num in enumerate(reversed(range(2, int(input()))))] else print('sosu')
2
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0