We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CHORE
1 parent b97d983 commit 3785e14Copy full SHA for 3785e14
main.py
@@ -46,7 +46,7 @@ def fast_fib(n: int, cache: {int: int}) -> int:
46
47
48
def is_between_zero_and_one(x: float, y: float) -> bool:
49
- """Returns true if the floats x and y exist between 0 and 1 false otherwise"""
+ """Returns true if the floats x and y exist between 0 and 1, false otherwise"""
50
return (0 < x < 1) and (0 < y < 1)
51
52
@@ -102,7 +102,7 @@ def print_int_array(the_array: [int]) -> None:
102
103
104
def matrix_transposition(the_matrix: [[int]]) -> [[int]]:
105
- """Returns the transposition of a matrix"""
+ """Returns the transpose of a matrix"""
106
rows: int = len(the_matrix)
107
cols: int = len(the_matrix[0]) # the number of columns remain constant
108
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
0 commit comments