题解 | 值和指针
值和指针
https://www.nowcoder.com/practice/632df72cb8934791a3a5f873f6306e47
package main
func equal( a int , b int ) []bool {
// write code here
return []bool{&a == &b, a == b}
}
值和指针
https://www.nowcoder.com/practice/632df72cb8934791a3a5f873f6306e47
package main
func equal( a int , b int ) []bool {
// write code here
return []bool{&a == &b, a == b}
}
相关推荐