Comments on: Swapping two variables without using third variable https://demo.ritambhara.in/swapping-two-variables-without-using-third-variable/ Coding / System Design Interviews Sat, 02 Jul 2022 05:36:04 +0000 hourly 1 https://wordpress.org/?v=6.7.2 By: Panja Bharath https://demo.ritambhara.in/swapping-two-variables-without-using-third-variable/#comment-6689 Sat, 02 Jul 2022 05:36:04 +0000 https://www.ritambhara.in/?p=11060#comment-6689 X = X * Y;
Y = X / Y;
X = X / Y;

]]>