Find all happy number till N

Write a program to find all happy numbers from 1 to N.

Happy Number:happy number is a number that eventually reaches 1 when replaced by the sum of the square of each digit

Example 1:

Input :n=14
Output: [1, 7, 10, 13]

Approach:

Java

import java.util.ArrayList;
import java.util.List;

public class HappyNumber1ToN {
    public static void main(String[] args) {
        int num = 14;
        List<IntegerallHappy = checkHappyNumber1ToN(num);
        System.out.println("All Happy Number are " + allHappy);
    }

    // Method for check all Happy number
    private static List<IntegercheckHappyNumber1ToN(int num) {
        // create list for hold number
        List<IntegerallHa = new ArrayList<Integer>();
        // iterate from 1 to num
        for (int i = 1; i <= num; i++) {
            // check current number is happy
            if (isHappy(i))
                allHa.add(i);
        }
        return allHa;
    }

    public static boolean isHappy(int n) {
        int prev = n;
        // sum of given number
        int next = sumOfSquareDigits(n);
        // iterate untill both equal
        while (prev != next) {
            // previuos sum
            prev = sumOfSquareDigits(prev);
            // next sum
            next = sumOfSquareDigits(sumOfSquareDigits(next));

            if (next == 1)
                return true;
        }

        return prev == 1;
    }

    // method to find the each digit square sum
    static int sumOfSquareDigits(int num) {
        int sum = 0;
        while (num > 0) {
            int digit = num % 10;
            sum += digit * digit;
            num = num / 10;
        }
        return sum;
    }
}

C++

#include <bits/stdc++.h>
using namespace std;
//function to find the each digit square sum
int sumOfSquareDigits(int num
{
        int sum = 0;
        while (num > 0) {
            int digit = num % 10;
            sum += digit * digit;
            num = num / 10;
        }
        return sum;
}
//function to check happy number
bool isHappy(int n) {
    int prev = n;
    // sum of given number
     int next = sumOfSquareDigits(n);
    // iterate untill both equal
    while (prev != next) {
            // previuos sum
        prev = sumOfSquareDigits(prev);
            // next sum
         next = sumOfSquareDigits(sumOfSquareDigits(next));

        if (next == 1)
                return true;
     }

    return prev == 1;
}


//function to find all Happy number
//till given number
vector<int>  checkHappyNumber1ToN(int num
{
    // create vector to hold 
    //the happy number
    vector<intallHa ;
    // iterate from 1 to num
    for (int i = 1i <= numi++) {
      // check current number is happy
            if (isHappy(i))
                allHa.push_back(i);
        }
        return allHa;
}
int main()
{
     int num = 14;
     vector<intallHappy = checkHappyNumber1ToN(num);
     cout<<"All Happy Number are ";
     for(int i=0;i<allHappy.size();i++)
        cout<<allHappy[i]<<" ";
    return 0;
}


No comments:

Post a Comment