set in Java/Python/Go/Javascript
Set | Java | Python | Go |
---|---|---|---|
type | Set<…>, HashSet, etc | set | N/A |
package | import Set | primitive | N/A |
mutable | Y | Y | N/A |
Notes
- Set is not sequence, cannot be got by index and slicing
- python
- frozenset is immutable set
- go
- No primitive set and related lib
Operations
1 |
|
版权声明:本博客所有文章除特殊声明外,均采用 CC BY-NC 4.0 许可协议。转载请注明出处 Kasper Deng的博客!