Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
18
Task/Show-ASCII-table/Excel/show-ascii-table-1.excel
Normal file
18
Task/Show-ASCII-table/Excel/show-ascii-table-1.excel
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
asciiTable
|
||||
=LAMBDA(i,
|
||||
justifyRight(3)(" ")(i) & ": " & (
|
||||
justifyRight(
|
||||
3
|
||||
)(" ")(
|
||||
IF(32 = i,
|
||||
"Spc",
|
||||
IF(127 = i,
|
||||
"Del",
|
||||
CHAR(i)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)(
|
||||
SEQUENCE(16, 6, 32, 1)
|
||||
)
|
||||
19
Task/Show-ASCII-table/Excel/show-ascii-table-2.excel
Normal file
19
Task/Show-ASCII-table/Excel/show-ascii-table-2.excel
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
justifyRight
|
||||
=LAMBDA(n,
|
||||
LAMBDA(c,
|
||||
LAMBDA(s,
|
||||
LET(
|
||||
lng, LEN(s),
|
||||
|
||||
IF(
|
||||
lng < n,
|
||||
MID(
|
||||
REPT(c, n),
|
||||
lng, n - lng
|
||||
) & s,
|
||||
s
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
19
Task/Show-ASCII-table/Excel/show-ascii-table-3.excel
Normal file
19
Task/Show-ASCII-table/Excel/show-ascii-table-3.excel
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
asciiTable2
|
||||
=LAMBDA(i,
|
||||
IF(0 <> MOD(i, 1),
|
||||
LET(
|
||||
code, FLOOR.MATH(i),
|
||||
|
||||
IF(32 = code,
|
||||
"Spc",
|
||||
IF(127 = code,
|
||||
"Del",
|
||||
CHAR(code)
|
||||
)
|
||||
)
|
||||
),
|
||||
i
|
||||
)
|
||||
)(
|
||||
SEQUENCE(16, 12, 32, 0.5)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue