Programming

594 Articles 12 Followers


Exponentia! @ Dcoder

1 Jun 2023 1 minute read 0 comments Lochard

Problem: Create a code that allows people to learn about exponents. The task is to write a code which takes an integer number as an input and returns the values ranging from that of 2(two) raised to power 0(zero) to 2(two) raised to power n(the numbe...

Building a Header in HTML, CSS, JavaScript, and React

31 May 2023 2 minute read 3 comments programmer22

  Introduction A website's header is an essential part of its design and functionality. It is the first thing users see when they visit a website, and it is responsible for providing navigation to other pages and even searching for content. In this t...

Build a Table in Next.js, Typescript, Tailwindcss, react-table

31 May 2023 3 minute read 0 comments programmer22

Build a Table in Next.js Typescript, Tailwindcss, react-table Skill Level: Beginner - Intermediate Introduction When working on a web application, it is common to need to display data in a table format. This can be achieved in React by using a libr...

Build a Login Form using React and Typescript

29 May 2023 3 minute read 0 comments programmer22

  Build a Login Form using React and Typescript skill level: beginner Introduction React is a popular open-source JavaScript library for building different kinds of user interfaces for different purposes. It is widely used in web development due to i...

The coding Challenges @ Dcoder

29 May 2023 1 minute read 0 comments Lochard

Title: The coding Challenges Problem: There are n participants appearing for one on one coding challenge.Each participant plays twice (challenges) with each of his opponents.You need to compute the total number of challenges.  Input: First line conta...

The Floating circle @ Dcoder

27 May 2023 1 minute read 0 comments Lochard

Title: The Floating circle Problem: Cody is a student in Trumph Academy, He is preparing for SSC, while he was solving some problems, he found an easy problem of Circles. The problem is You have to calculate the area of a Circle, radius of the circle...

Tracy's love. @ Dcoder

24 May 2023 1 minute read 0 comments Lochard

Problem: Hey, my name is Tracy.I am 4 year old and love the number 6.I want to play a number game with you, I'll give you two numbers and you just need to tell whether their sum or difference can be the number I love,6. Input: Input contains 2 intege...

Equable Triangles @ Dcoder

23 May 2023 1 minute read 0 comments Lochard

Title: Equable Triangles Problem: An Equable Triangle is a triangle which has its area equals to the sum of its sides.  You are given with the sides of a triangle, your task is to write a code which will return 'True'. if the triangle is equable, oth...

Help Cody @ Dcoder

20 May 2023 1 minute read 0 comments Lochard

Title: Help Cody Problem: Cody is stuck in a problem and needs your help to get out of trouble. He was given a sorted array by his teacher. After his teacher left, he mistakenly rearranged some elements of the array. Help Cody sort the array before h...

The Armstrong Number @ Dcoder

18 May 2023 1 minute read 0 comments Lochard

Problem: An Armstrong number of three digits is an integer such that the sum of the cubes of its digits is equal to the number itself. For example, consider the number 371. The sum of the cube of its digits is 3^3 + 7^3 + 1^3 = 27 + 343 + 1 = 371. Th...