tree
Here are 1,840 public repositories matching this topic...
Is there a reason why in travis CI config the command black --check . || true
is run? I don't see the point in checking if files needs to be reformatted if it's just going to be ignored anyways.
Currently running black --line-length 127 --check .
-> 399 files would be reformatted, 74 files would be left unchanged.
In additio
A pleasure that LinkedHashMap has been added.
While I have a different point about the iterative sequence. The sequence should order by the key last time put in instead of the first time put in.
This situation is caused by the func named LinkedHashMap.Put:
// Put inserts key-value pair into the map.
// Key should adhere to the comparator's type assertion, otherwise method panics.
fu
Hello there,
I just installed the latest version of broot 0.12.2 in iTerm Build 3.3.8 on a Mac OS Catalina 10.15.3.
It looks like a pretty amazing tool! Thanks for all the hard work*
One question, Alt+Enter is the default to bring the current windows into full size.
How can I change this? In the config file at /Users/USER/Library/Preferences/org.dystroy.broot/conf.toml, there is no Alt+
-
Updated
Mar 26, 2020 - C++
I'd suggest a better differentiation between Best and Breadth First Search in the Graphs section.
Acronyms BFS and DFS are used all over the place, but "breadth" and "depth" aren't mentioned anywhere, making it hard for a newcomer to understand what is being referred to.
steps to reproduce
Write a loop, from 1 to 80000, each time add a random int to the max heap.
In theory it takes very little time(NlogN, N=80000, <1sec ), but the program does take a long time.
I'v also tested the BinaryHeap in https://github.com/SolutionsDesign/Algorithmia, it performs well, so it is probably due to the bad algorithm.
-
Updated
May 20, 2020 - Rust
- User case:
- for programmers new to the library to get some context on how to add customization functions and styles
- Implementation ideas:
- Thinking of creating a markdown doc or webpage or something
-
Updated
Aug 18, 2018 - JavaScript
I remember last year before this repo came to Alibaba hands that it had much better documentation.
Now you its hard to find, and you need to go to some not much friendly website to read unfinished documentation.
Can you guys simply upload documentation API over here like every other normal repo?
-
Updated
Apr 16, 2020 - TypeScript
Hi,
Thank you for the component, I like it.
Today, I discovered ext-grid and the performances are now amazing for big structure.
My code is based on this code because I need a vertical scroll:
https://wwwendt.de/tech/fancytree/demo/index.html#sample-3rd-grid-scrollbar.html
Like you, I use plain-scrollbar.js.
But, I need an horizontal scroll to.
And when I move the horizontal scroll, t
-
Updated
Apr 29, 2020 - Vue
I think it would be nice to have the option to dump a raw graphviz DOT file instead of the sppf.png for a few reasons:
- the file size is a lot smaller
- it's nice to be able to "do things" with the resulting tree in its structured form, rather than navigate the rendered bitmap
- it's only one extra (or no extra) line and could be optional, e.g. if you've turned on "debug" mode.
Any though
Our selectors are using a custom icon and I want to use it with this component too, is it possible?
Storybook is a popular tool for designing UI components and design systems. It should be possible to integrate Storybook with OverVue, even if simply at first.
Have you considered it?
Thanks!
To describe:
- How to contribute code.
- code style
- document style
- how to test
- purpose of this project, what to do and what not to do.
-
Updated
Nov 15, 2019 - C
I'm submitting a ...
[ ] bug report
[x] feature request
[ ] support request
Current behavior
When using DataTable with selectionMode 'multiple' a clickable checkbox occures for every row.
Expected behavior
It should be possible to disable checkboxes conditionally for certain rows by e.g. a body for the checkbox column.
-
Updated
Apr 21, 2020 - JavaScript
AOT build under Angular 9 with angularCompilerOptions.strictTemplates: true
in tsconfig.app.json
generates error TS2741: Property 'options' is missing in type 'ITreeOptions' but required in type 'TreeOptions'
because the @Input options
is incorrectly typed as TreeOptions
in the code, req
-
Updated
May 18, 2020 - JavaScript
-
Updated
Mar 1, 2018 - JavaScript
-
Updated
Mar 29, 2020 - Jupyter Notebook
Improve this page
Add a description, image, and links to the tree topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the tree topic, visit your repo's landing page and select "manage topics."
有一幅以二维整数数组表示的图画,每一个整数表示该图画的像素值大小,数值在 0 到 65535 之间。
给你一个坐标 (sr, sc) 表示图像渲染开始的像素值(行 ,列)和一个新的颜色值 newColor,让你重新上色这幅图像。
为了完成上色工作,从初始坐标开始,记录初始坐标的上下左右四个方向上像素值与初始坐标相同的相连像素点,接着再记录这四个方向上符合条件的像素点与他们对应四个方向上像素值与初始坐标相同的相连像素点,……,重复该过程。将所有有记录的像素点的颜色值改为新的颜色值。
最后返回经过上色渲染后的图像。
示例 1:
输入:
image = [[1,1,1],[1,1,0],[1,0,1]]
sr = 1, sc = 1, newColor = 2
输出: [[2,2,2],[2,2,0],[2,0,1]]
解析:
在图像的正中间,(坐标(