indentation improved

This commit is contained in:
Nishita Aggarwal 2017-12-30 02:14:48 +05:30 committed by GitHub
parent 55b9080e54
commit 8db4ef901c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ import java.util.Scanner;
*
* @author Nishita Aggarwal
*
* Brian Kernighans Algorithm
* Brian Kernighans Algorithm
* algorithm to count the number of set bits in a given number
* Subtraction of 1 from a number toggles all the bits (from
* right to left) till the rightmost set bit(including the
@ -24,10 +24,10 @@ import java.util.Scanner;
public class BrianKernighanAlgorithm {
/**
* @param num: number in which we count the set bits
*
* @return int: Number of set bits
* */
* @param num: number in which we count the set bits
*
* @return int: Number of set bits
* */
static int countSetBits(int num)
{
int cnt = 0;