Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

#User function Template for python3

class Solution: def isTriangular(self, N):

# your code

# } Driver Code Ends

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Peter Robb,Carlos Coronel

5th Edition

061906269X, 9780619062699

More Books

Students also viewed these Databases questions

Question

What are the responsibilities of the network layer?

Answered: 1 week ago

Question

Additional Factors Affecting Group Communication?

Answered: 1 week ago