Giter Club home page Giter Club logo

javacodes's People

Contributors

adamsadek avatar akhatabdev avatar apgautham avatar bhanupavank avatar chandusomineni avatar dharunkumar7 avatar diptigit11 avatar ericyung1 avatar farhanfr avatar gaurav-lomte23 avatar gawadeatul avatar harshlancer avatar jagan-satwik-reddy avatar karthikeyajoshi avatar kashish-51 avatar nikhilkotlobudde avatar olidesu avatar parthasdey2304 avatar pedromaltez5 avatar rohxn16 avatar sbiswas001 avatar srinijadharani avatar sujana-kamasany avatar surya-thotamsetty avatar tadiharshith avatar taeyeonroyce avatar tangorishi avatar tarun-gudapati avatar tony-91 avatar valanm22 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

javacodes's Issues

Java Program to Check Neon Number

Add JAVA Program to Check if the given number is NEON NUMBER OR NOT

If the sum of digits of the square of the number is equal to the same number then the number is called Neon number.

Example:- 9
Square of 9 = 92= 81
Sum of the digits of the square = 8+1= 9
So, 9 is a Neon Number.

Another Example:- 1
Square of 1= 12= 1
Sum of the digits of the square = 1
S0, 1 is a Neon Number

Another Example:- 6
Square of 6 = 62 = 36
Sum of the digits of the square = 3+6 = 9
Here, 6 is not equal to 9.
So, 6 is not a Neon number.

Java Program to Check Buzz Number

Add Java Program to Check Buzz Number

  • A number is called a buzz number if it is divisible by 7 or it ends with 7. For example- 7, 17, 27, 37, 47 are buzz numbers because they end with 7.
  • Similarly, the numbers 7, 14, 21, 28, 35, 49 are also buzz numbers because they are divisible by the number 7.
  • The first few buzz numbers are:- 7 14 17 21 27 28 35 37 42 47 49 56 57 63 67 70 77 84 87 91 97 98 105 107 112 117 119 126 127 133 137 140 147 154 157 161 167 168 175 177 182 187 189 196 197

Addition of Code for LinkedList Operations

Issue Description:

I would like to request the addition of code in the "LinkedList" folder of this repository to implement various LinkedList operations. These operations will enhance the functionality of our LinkedList data structure.

Details:

Delete from Start:

  1. Implement a method to delete a node from the beginning of the linked list.

Delete from End:

  1. Implement a method to delete a node from the end of the linked list.

Delete Before a Specific Value:

3.Implement a method to delete a node that appears immediately before a specific value in the linked list.

Additional Operations:

4.Consider adding other useful LinkedList operations like insertion, searching, and more, as they might be relevant to our project.

If there are related issues or pull requests that are connected to this request, please reference them.

Palindrome

Add a Java Program to Check Palindrome

Pronic Number Program in Java

Java program to check whether the given number is the pronic number or not

A pronic number is a number which is the product of two consecutive integers, that is, a number of the form n(n + 1).

The pronic number is also called oblong numbers, heteromecic numbers, or rectangular numbers.
The first few Pronic numbers are::- 0, 2, 6, 12, 20, 30, 42, 56, 72, 90, 110, 132, 156, 182, 210, 240, 272, 306, 342, 380, 420, 462 โ€ฆ

image

JAVA Program to check if the given value is spy number or not

Write a JAVA Program to find the given number is spy or not

A number whose sum of the digits of is equal to the product of its digits is called Spy number.

Example:- 132
The sum of digits = 1 + 3 + 2 = 6
The product of the digits = 1 * 3 * 2 = 6
Hence, 132 is a spy number.

Similarly, 1124 is also a spy number.
The sum of digits = 1 + 1 + 2 + 4 = 8
The product of the digits = 1 * 1 * 2 * 4 = 8

Introduction to Arrays in JAVA

Introduction to Arrays in JAVA

Documentation:

  • readme file
  • resources /links

Create a new folder named Arrays and add intro to arrays in java

Introduction to strings in JAVA

Introduction to Strings in JAVA

Documentation:

  • readme file
  • resources /links

Create a new folder named strings and add intro to Strings in java

Peterson Number in Java

Java Program to check whether a given number is Peterson or not through a Java program.

Peterson Number

A number is said to be Peterson if the sum of factorials of each digit is equal to the sum of the number itself.

  • Suppose, we have to check the number (n) 145 is Peterson or not.

Number = 145

145 = !1 + !4 + !5

=1+4321+5432*1

=1+24+120

145=145

We observe that the number and the sum of factorials of digits are equal to the number itself. Hence, 145 is a Peterson number.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.