kamyu104/LeetCode-Solutions

Can someone explain what this line of code means? TIA!

indraneelpatil opened this issue · 2 comments

Is this equivalent to two separate lines like :

  • a=min;
  • b=c;

Yes, it does.

This syntax is same as

int a = 0, b = 0;

Okay thanks!