AT
Size: a a a
AT
D
A
V
LR
R
DT
class MyRectangle(val width: Int, val height: Int) {
val isSquare: Boolean
get() {
return width == height
}
fun isSquare2(): Boolean {
return width == height
}
}
R
class MyRectangle(val width: Int, val height: Int) {
val isSquare: Boolean
get() {
return width == height
}
fun isSquare2(): Boolean {
return width == height
}
}
DT
DT
AK
AK
R
DT
AB
ВБ
AB
ВБ
AB