Style Changed

This commit is contained in:
Omkarnath Parida
2020-10-05 00:00:45 +05:30
parent b1a3e19784
commit 3ab272da4b

View File

@ -22,7 +22,7 @@ function main () {
while (fast != null && fast.next != null && slow != null) {
fast = fast.next.next
slow = slow.next
if (fast == slow) {
if (fast === slow) {
return true
}
}