Skip to content

Instantly share code, notes, and snippets.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@foxqstm
foxqstm / CheckPrime.py
Created July 3, 2020 09:18
n2aPrimeChecker
# coding: utf-8
# In[29]:
def is_prime(num_in):
if num_in <= 1:
return False
else:
@foxqstm
foxqstm / intsqrt.ipynb
Last active September 4, 2020 05:14
Intsqrt
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@foxqstm
foxqstm / factorization ver1.ipynb
Created September 4, 2020 23:44
factorization ver1.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@foxqstm
foxqstm / Sequence factorial method ver 3.ipynb
Created September 8, 2020 03:17
Sequence factorial method
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@foxqstm
foxqstm / intsqrt.ipynb
Created September 8, 2020 06:28
Intsqrt ver2
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@foxqstm
foxqstm / cyclotomic polynomial method ver 1.ipynb
Created September 11, 2020 04:47
cyclotomic polynomial method
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.