Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/encodings.xml

This file was deleted.

7 changes: 1 addition & 6 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/markdown-navigator/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

65 changes: 65 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 0 additions & 19 deletions Hackathon.iml

This file was deleted.

18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
## Hackathon CSwithAndroid 2k16

## FunWithMath
## FunWithSquare

# Perfect Square game.

| ![](Screenshot_2017-01-14-02-42-59.png) | ![](Screenshot_2017-01-14-02-43-04.png) |
|-------------------------------------------|--------------------------------------------|
| ![](Screenshot_2017-01-14-02-43-20.png) | ![](Screenshot_2017-01-14-02-43-55.png) |

This is Android Fun game to add digit and make a perfect Square Number and perfect cube and perfect fourth root for a Given prefix number.

This is Android Fun game to add digit and make a perfect Square Number and perfect cube and perfect fourth root for a Given prefix number.

* Rules of the Game:<br/>
(Fun_Math)^2 is a simple math game where user need to guess the correct length perfect<br/>
Expand Down Expand Up @@ -33,3 +37,11 @@
A radix tree is a compressed version of a trie.In a trie, on each edge you write a<br/>
single letter, while in a Patricia tree(or radix tree) we store whole words.<br/>
It takes less memory compared to trie node.
### Team Members (contribution in Hackathon 2K16)

* [Jitendra Singh](https://github.com/jsroyal) - Design & Implementation
* [Ajit Jain](https://github.com/ajit-999) - Algorithm & Implemention
* [Prem Chand Saini ](https://github.com/pcsaini) - User interface
* [K Naveen kumar](https://github.com/naveen) - Algorithm and Readme
* [Rajeev Kumar Singh](https://github.com/rajeeviiit) - Algorithm and Readme

Binary file added Screenshot_2017-01-14-02-42-59.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshot_2017-01-14-02-43-04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshot_2017-01-14-02-43-20.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshot_2017-01-14-02-43-33.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screenshot_2017-01-14-02-43-55.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/app-release.apk
Binary file not shown.
126 changes: 0 additions & 126 deletions app/app.iml

This file was deleted.

17 changes: 9 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion '25.0.2'

defaultConfig {
applicationId "com.example.pcsaini779.hackathon"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
applicationId "com.game.ajitrajeev.funwithsquare"
minSdkVersion 16
targetSdkVersion 25
versionCode 2
versionName "1.0"
}
buildTypes {
Expand All @@ -22,6 +22,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:design:25.3.1'
compile 'com.google.android.gms:play-services-ads:11.0.4'
}
Loading