Skip to content

Commit

Permalink
Merge pull request #58 from elosh124/fix-bug011
Browse files Browse the repository at this point in the history
Fix bug011 GG
  • Loading branch information
RunCor399 authored Dec 13, 2023
2 parents f5e2782 + bc72aaa commit eabb96d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/BUG/mathematics.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def neg_value(a: int) -> int:
'''
BUG011: neg_value should return the negation of the value, not the value itself.
'''
result = a
result = -a
return result


Expand Down
2 changes: 1 addition & 1 deletion source/FAQ/Part4.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FAQ 061->080 - General and Miscellaneous

### FAQ061
What does IEEE stands for?
What does IEEE stands for? IEEE stands for "Institute of Electrical and Electronics Engineers"

### FAQ062
What is the third planet in the solar system?
Expand Down

0 comments on commit eabb96d

Please sign in to comment.