You are viewing a single comment's thread. Return to all comments →
My code in Kotlin:
fun findPoint(px: Int, py: Int, qx: Int, qy: Int): Array<Int> { val rx = qx + (qx-px) val ry = qy + (qy-py) return arrayOf(rx, ry) }
Seems like cookies are disabled on this browser, please enable them to open this website
Find the Point
You are viewing a single comment's thread. Return to all comments →
My code in Kotlin: