issetequal() 是 julia 中的一个内置函数,用于确定两个指定的集合 a 和 b 是否具有相同的元素。
用法:
issetequal(a, b)
参数:
- a:指定首套
- b:指定第二组。
返回值:如果两个集合相等则返回真,否则返回假。
范例1:
Python
# Julia program to illustrate
# the use of issetequal() method
# Getting true if the two sets
# are equal else returns false.
println(issetequal([1, 2], [1, 2, 3]))
println(issetequal([1, 2], [3, 1, 2]))
println(issetequal([2, 2], [1, 2, 2]))
输出:
范例2:
Python
# Julia program to illustrate
# the use of issetequal() method
# Getting true if the two sets
# are equal else returns false.
println(issetequal([1, 2], [1, 2]))
println(issetequal([1, 2], [2, 1]))
println(issetequal([2, 2, 3], [2, 3, 2]))
println(issetequal([1, 2, 3], [3, 1, 2]))
输出:
相关用法
- Julia isvalid()用法及代码示例
- Julia isodd()用法及代码示例
- Julia iseven()用法及代码示例
- Julia ceil()用法及代码示例
- Julia floor()用法及代码示例
- Julia min()用法及代码示例
- Julia sizeof()用法及代码示例
- Julia reverse()用法及代码示例
- Julia Array fill()用法及代码示例
- Julia foreach()用法及代码示例
- Julia count()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Checking the equality of sets in Julia – issetequal() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。