Skip to content

codespell --quiet-level=2 #1711

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 23, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
- uses: actions/setup-python@v1
- run: pip install codespell flake8
- run: |
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt,*.bak,*.gif,*.jpeg,*.jpg,*.json,*.png,*.pyc"
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP
SKIP="./.*,./other/dictionary.txt,./other/words,./project_euler/problem_22/p022_names.txt"
codespell -L ans,fo,hist,iff,secant,tim --skip=$SKIP --quiet-level=2
20 changes: 12 additions & 8 deletions maths/area_under_curve.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@

from typing import Callable, Union

def trapezoidal_area(fnc: Callable[[Union[int, float]], Union[int, float]],
x_start: Union[int, float],
x_end: Union[int, float],
steps: int = 100) -> float:

def trapezoidal_area(
fnc: Callable[[Union[int, float]], Union[int, float]],
x_start: Union[int, float],
x_end: Union[int, float],
steps: int = 100,
) -> float:
"""
Treats curve as a collection of linear lines and sums the area of the
trapezium shape they form
Expand All @@ -34,22 +37,23 @@ def trapezoidal_area(fnc: Callable[[Union[int, float]], Union[int, float]],
for i in range(steps):
# Approximates small segments of curve as linear and solve
# for trapezoidal area
x2 = (x_end - x_start)/steps + x1
x2 = (x_end - x_start) / steps + x1
fx2 = fnc(x2)
area += abs(fx2 + fx1) * (x2 - x1)/2
area += abs(fx2 + fx1) * (x2 - x1) / 2
# Increment step
x1 = x2
fx1 = fx2
return area


if __name__ == "__main__":

def f(x):
return x**3 + x**2
return x ** 3 + x ** 2

print("f(x) = x^3 + x^2")
print("The area between the curve, x = -5, x = 5 and the x axis is:")
i = 10
while i <= 100000:
print(f"with {i} steps: {trapezoidal_area(f, -5, 5, i)}")
i*=10
i *= 10
6 changes: 3 additions & 3 deletions maths/armstrong_numbers.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def armstrong_number(n: int) -> bool:
"""
if not isinstance(n, int) or n < 1:
return False

# Initialization of sum and number of digits.
sum = 0
number_of_digits = 0
Expand All @@ -37,7 +37,7 @@ def armstrong_number(n: int) -> bool:
temp = n
while temp > 0:
rem = temp % 10
sum += (rem ** number_of_digits)
sum += rem ** number_of_digits
temp //= 10
return n == sum

Expand All @@ -50,7 +50,7 @@ def main():
print(f"{num} is {'' if armstrong_number(num) else 'not '}an Armstrong number.")


if __name__ == '__main__':
if __name__ == "__main__":
import doctest

doctest.testmod()
Expand Down
14 changes: 9 additions & 5 deletions maths/line_length.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
from typing import Callable, Union
import math as m

def line_length(fnc: Callable[[Union[int, float]], Union[int, float]],
x_start: Union[int, float],
x_end: Union[int, float],
steps: int = 100) -> float:

def line_length(
fnc: Callable[[Union[int, float]], Union[int, float]],
x_start: Union[int, float],
x_end: Union[int, float],
steps: int = 100,
) -> float:

"""
Approximates the arc length of a line segment by treating the curve as a
Expand Down Expand Up @@ -48,10 +51,11 @@ def line_length(fnc: Callable[[Union[int, float]], Union[int, float]],

return length


if __name__ == "__main__":

def f(x):
return m.sin(10*x)
return m.sin(10 * x)

print("f(x) = sin(10 * x)")
print("The length of the curve from x = -10 to x = 10 is:")
Expand Down
19 changes: 11 additions & 8 deletions maths/numerical_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@

from typing import Callable, Union

def trapezoidal_area(fnc: Callable[[Union[int, float]], Union[int, float]],
x_start: Union[int, float],
x_end: Union[int, float],
steps: int = 100) -> float:

def trapezoidal_area(
fnc: Callable[[Union[int, float]], Union[int, float]],
x_start: Union[int, float],
x_end: Union[int, float],
steps: int = 100,
) -> float:

"""
Treats curve as a collection of linear lines and sums the area of the
Expand Down Expand Up @@ -39,9 +42,9 @@ def trapezoidal_area(fnc: Callable[[Union[int, float]], Union[int, float]],

# Approximates small segments of curve as linear and solve
# for trapezoidal area
x2 = (x_end - x_start)/steps + x1
x2 = (x_end - x_start) / steps + x1
fx2 = fnc(x2)
area += abs(fx2 + fx1) * (x2 - x1)/2
area += abs(fx2 + fx1) * (x2 - x1) / 2

# Increment step
x1 = x2
Expand All @@ -52,12 +55,12 @@ def trapezoidal_area(fnc: Callable[[Union[int, float]], Union[int, float]],
if __name__ == "__main__":

def f(x):
return x**3
return x ** 3

print("f(x) = x^3")
print("The area between the curve, x = -10, x = 10 and the x axis is:")
i = 10
while i <= 100000:
area = trapezoidal_area(f, -5, 5, i)
print("with {} steps: {}".format(i, area))
i*=10
i *= 10