Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
40
Task/Rep-string/Excel/rep-string-2.excel
Normal file
40
Task/Rep-string/Excel/rep-string-2.excel
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
FILTERP
|
||||
=LAMBDA(p,
|
||||
LAMBDA(xs,
|
||||
FILTER(xs, p(xs))
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
INITS
|
||||
=LAMBDA(s,
|
||||
MID(
|
||||
s,
|
||||
1, SEQUENCE(
|
||||
1, 1 + LEN(s),
|
||||
0, 1
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
LASTCOL
|
||||
=LAMBDA(xs,
|
||||
IF(AND(1 = COLUMNS(xs), ISBLANK(xs)),
|
||||
NA(),
|
||||
INDEX(xs, 1, COLUMNS(xs))
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
TAILCOLS
|
||||
=LAMBDA(xs,
|
||||
IF(1 < COLUMNS(xs),
|
||||
INDEX(
|
||||
xs,
|
||||
1,
|
||||
SEQUENCE(1, COLUMNS(xs) - 1, 2, 1)
|
||||
),
|
||||
NA()
|
||||
)
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue