Skip to content

Commit 871a391

Browse files
committed
♻️ replace kap outer product glyph
1 parent 7c7f56c commit 871a391

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

comparisons/leetcode/P1614_Max_Paren_Depth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| | Solution | Link |
99
| :-------: | :--------------------------------------------: | :---------------------------------------------------------------------------: |
1010
| APL | `maxDepth ← {⌈/+\-⌿'()'∘.=⍵}` | [Link](https://github.com/codereport/LeetCode/blob/master/0210_Problem_1.apl) |
11-
| Kap | `MaxDepth ⇐ ⌈/+\-⌿"()"∘.=` | |
11+
| Kap | `MaxDepth ⇐ ⌈/+\-⌿"()"=⌻` | |
1212
| J | `maxDepth =. {{ >./+/\-/'()'=/y }}` | |
1313
| BQN | ``MaxDepth ← ⌈´·+`·-˝"()"=⌜⊢`` | [Link](https://github.com/codereport/LeetCode/blob/master/0210_Problem_1.bqn) |
1414
| Q | `maxDepth: { max sums (-) over "()" =/:\: x }` | [Link](https://github.com/codereport/LeetCode/blob/master/0210_Problem_1.q) |

comparisons/leetcode/P2319_Check_Matrix.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
| | Solution | Link |
88
| :-------: | :---------------------------------------------------------------------------: | :-----------------------------------------------------------------------------------------------------------------: |
99
| APL | `checkMatrix ← {(1⌊⍵)≡(⊖⌈⊢)∘.=⍨⍳≢⍵}` | [Link](https://github.com/codereport/LeetCode/blob/master/0299_Problem_1.apl) |
10-
| Kap | `CheckMatrix ⇐ {(1⌊⍵)≡⌽⍛⌈(∘.=⍨)⍳≢⍵}` | |
10+
| Kap | `CheckMatrix ⇐ {(1⌊⍵)≡⌽⍛⌈=⌻⍨⍳≢⍵}` | |
1111
| J | `checkMatrix =. {{ (1<.y)-:(\|.>.])=/~i.#y }}` | [Link](https://github.com/codereport/LeetCode/blob/master/0299_Problem_1.ijs) |
1212
| BQN | `CheckMatrix ← {(1⌊𝕩)≡⌽⊸⌈=⌜˜↕≠𝕩}` | [Link](https://github.com/codereport/LeetCode/blob/master/0299_Problem_1.bqn) |
1313
| Uiua | `CheckMatrix ← ≅↧1∶↥⇌.⊞=.⇡⧻.` | |

0 commit comments

Comments
 (0)