Skip to content

Commit 0c69715

Browse files
committed
Blank line after closing bracket
1 parent 64f2f42 commit 0c69715

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Algorithms.Tests/Numeric/AdditionWithoutArithmeticsTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ public static void CalculateAdditionWithoutArithmetic_Test(int first, int second
2020
// Assert
2121
Assert.That(result, Is.EqualTo(expectedResult));
2222
}
23-
}
23+
24+
}

Algorithms/Numeric/AdditionWithoutArithmetic.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ public static int CalculateAdditionWithoutArithmetic(int first, int second)
2222
first ^= second; // Sum without carry
2323
second = c << 1; // Carry shifted left
2424
}
25+
2526
return first;
2627
}
28+
2729
}

0 commit comments

Comments
 (0)