@scurrlin/stencil 1.26.6 → 1.26.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -24,8 +24,7 @@ Solution
24
24
 
25
25
  ```python
26
26
  class Solution:
27
- def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
28
-
27
+ def lowestCommonAncestor(self, root: 'TreeNode', p: 'TreeNode', q: 'TreeNode') -> 'TreeNode':
29
28
  while True:
30
29
  if root.val < p.val and root.val < q.val:
31
30
  root = root.right
@@ -39,8 +38,7 @@ Solution with Stencil
39
38
 
40
39
  ```python
41
40
  c S:
42
- d l(s, r: 'T', p: 'T', q: 'T') -> 'T':
43
-
41
+ d l(s, r: 'T', p: 'T', q: 'T') -> 'T':
44
42
  w T:
45
43
  i r.v < p.v a r.v < q.v:
46
44
  r = r.r
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scurrlin/stencil",
3
- "version": "1.26.6",
3
+ "version": "1.26.7",
4
4
  "description": "A memorization tool that strips code down to first letters and punctuation only.",
5
5
  "main": "src/index.js",
6
6
  "bin": {