Code Monkey home page Code Monkey logo

math-riddle-free's Introduction


Math Riddle : Puzzle & Brain Games

Google Play

Math Riddles: Boost Your Brainpower with Fun IQ-Enhancing Games!


Welcome to Math Riddle, the ultimate brain workout game designed to elevate your cognitive abilities and keep your mind sharp! With 40+ unique math-based riddles and observation puzzles, challenge your memory, focus, and problem-solving skills. Whether you're looking to improve your IQ or simply have fun, Math Riddle offers an easy-to-use interface and multiple difficulty levels to keep you engaged. Play anytime, anywhere, as the game is fully offline playable. Get ready for an intriguing mental journey that becomes more captivating with each level!

Game Type

Math Riddle features three different types of games, each offering unique challenges:

enum GameType {
  numpad,
  option,
  imageOption,
}
Numpad Option(abcd) Option(abcdef) ImageOption

Puzzle Models

The game is built around a set of models that represent different puzzle levels:

  1. Numpad:
    • In this type of puzzle, you will be presented with a question or a sequence that requires a numeric answer. Use the virtual numpad to input your solution and proceed to the next level.
    • Its will created with BaseLevel class like this
BaseLevel(
  id: 100,                   //Unique id for this puzzle
  difficulty: 5,             //Currently its not used 
  image: 100.toImagePath(),  //Image path of this puzzle
  answer: "40",              //Numerical answer
)
  1. Option:
    • Test your skills with multiple-choice questions. You'll be given a question along with a set of options, such as (a), (b), (c), (d), or any even number of options. Choose the correct option and move on to the next challenge.
    • Its has predefine ABCD option or You can create your custom option like ABCDEF or 1,2,3,4 etc.
    • To create an "Option" puzzle, you can use the OptionLevel class like this:
OptionLevel(
  id: 105,
  difficulty: 5,
  image: 105.toImagePath(),
  answer: "B",              //Answer from below optionList
  optionList: [             // List of options for the puzzle
    const Option(name: "A", isSelected: false),  //isSelected is `false` by default
    const Option(name: "B", isSelected: false),
    const Option(name: "C", isSelected: false),
    const Option(name: "D", isSelected: false),
  ],
)
  1. ImageOption:
    • Engage in image-based puzzles with multiple-choice options. These puzzles include an image along with the corresponding options. Select the correct option based on the image content, and advance through the game.
    • To create an "ImageOption" puzzle, you can use the ImageOptionLevel class like this:
ImageOptionLevel(
  id: 112,
  difficulty: 5,
  image: 112.toImagePath(),
  answer: "B",                   //Answer from below optionList
  optionList: [                  // List of options for the image-based puzzle
    ImageOption(
      name: "A",                 //Option name(which will cross check with answer)         
      image: 112.toOptionImagePath(type: "a"),//Image option path
    ),
    ImageOption(
      name: "B",
      image: 112.toOptionImagePath(type: "b"),
    ),
    ImageOption(
      name: "C",
      image: 112.toOptionImagePath(type: "c"),
    ),
    ImageOption(
      name: "D",
      image: 112.toOptionImagePath(type: "d"),
    ),
  ],
)

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Contact

Nividata Consultancy

Developer

Mehul Makwana

This app using following packages

math-riddle-free's People

Contributors

mehul425 avatar mehulmk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Forkers

param-harrison

math-riddle-free's Issues

Answer all of question

Hello, I've played your game on Google Play and happened to find your GitHub. I've been trying to crack the game, but it's quite challenging for me. Could you please provide me with the answers to the game? Thank you very much.

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.