Fix coding style

This commit is contained in:
小太
2013-02-23 15:13:39 +11:00
parent 8f3f997a57
commit bb521794e9

View File

@@ -31,11 +31,9 @@
{
if (a[0] < b[0]) {
a.shift();
}
else if (a[0] > b[0]) {
} else if (a[0] > b[0]) {
b.shift();
}
else {
} else {
result.push(a.shift());
b.shift();
}