Git Product home page Git Product logo

java-exercises's Introduction

Java Exercises

Anagram Counter

An anagram is a word where when you rearrange the letters to get another word. Say you had a list of words and you wanted to count the number of unique anagrams there are. For example:

cat act rat tar art face cafe trap rapt part tarp univision

Create a count array that counts all the unique anagrams in the words array. The letters in the keys in the count array can be in any order. The same word can appear twice in the words array.

$words = array('cat', 'cat', 'rat', 'tar', 'art', 'trap', 'rapt', 'univision', 'act', 'part', 'trap', 'part', 'tarp', 'rat', 'face', 'cafe'); $count = array( 'act' => 3, 'art' => 4, 'part' => 6, 'face' => 2, 'univision' => 1 );

Matrix Rotator

Rotate a matrix of characters (so no vector multiplication can be done) 90 degrees.

a b c g d a d e f => h e b g h i i f c

$m = array();

$m[0] = {'a', 'b', 'c'}; $m[1] = {'d', 'e', 'f'}; $m[2] = {'g', 'h', 'i'};

Reverse Polish Notation Calculator

A simple RPN calculator that operates on double precision floating point numbers. It uses it's own stack implementation.

Triple Double

Given two integers, tell if the first contains a subsequence of three consecutive digits equal between each other. Also tell if the second contains a subsequence of two consecutive digits equal between each other.

java-exercises's People

Contributors

dependabot[bot] avatar foundationer avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

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.