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.
2 parents c414499 + 4023001 commit 13806d5Copy full SHA for 13806d5
.editorconfig
@@ -7,6 +7,7 @@ root = true
7
[*]
8
end_of_line = lf
9
insert_final_newline = true
10
+trim_trailing_whitespace = true
11
12
# Matches multiple files with brace expansion notation
13
# Set default charset
editorconfig
lab/exercises/05-bits/02-binary-to-string.js
@@ -58,7 +58,7 @@ module.exports = binaryToString;
58
59
// 17 = 7 * 10^0 + 1 * 10^1
60
61
-// 0.893 = 8*10^-1 + 9*10^-2 + 3*10^-1
+// 0.893 = 8*10^-1 + 9*10^-2 + 3*10^-1
62
// 0.10010 => 1*2^-1 + 0*2^-2 + 0*2^-3 + 1*2^-4 =
63
64
0 commit comments