Question
Given a number N.Check whether it is a triangular number or not. Note: A number is termed as a triangular number if we can represent
Given a number N.Check whether it is a triangular number or not. Note: A number is termed as a triangular number if we can represent it in the form of a triangular grid of points such that the points form an equilateral triangle and each row contains as many points as the row number, i.e., the first row has one point, the second row has two points, the third row has three points and so on. The starting triangular numbers are 1, 3 (1+2), 6 (1+2+3), 10 (1+2+3+4).
Example 1:
Input: N=55 Output: 1 Explanation: 55 is a triangular number. It can be represented in 10 rows.
Example 2:
Input: N=56 Output: 0 Explanation: 56 is not a triangular number.
Your Task: You don't need to read input or print anything. Your task is to complete the function isTriangular() that takes a number N as input parameter and returns 1 if it is a triangular number. Otherwise, it returns 0.
Expected Time complexity:O(LogN) Expected Auxillary Space:O(1)
Constraints: 1<=N<=106
// { Driver Code Starts //Initial Template for Java
import java.io.*; import java.util.*;
class GFG { public static void main(String args[]) throws IOException { BufferedReader read = new BufferedReader(new InputStreamReader(System.in)); int t = Integer.parseInt(read.readLine()); while (t-- > 0) { int N=Integer.parseInt(read.readLine()); Solution ob = new Solution(); System.out.println(ob.isTriangular(N)); } } }// } Driver Code Ends
//User function Template for Java
class Solution { int isTriangular(int N){ //code here } }
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started