├── README.md └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # 30-days-of-code 2 | 30 days of Code is helpful for coders to brush up on their coding fundamentals. Every day you will get a new problem which would cover up new concept.The questions may start from printing “Hello world” and can go up to DSA, Exception Handling which can turn out to be pretty good. 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | /build/ 3 | 4 | # Ignore Gradle GUI config 5 | gradle-app.setting 6 | 7 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 8 | !gradle-wrapper.jar 9 | 10 | # Cache of project 11 | .gradletasknamecache 12 | 13 | # # Work around https://youtrack.jetbrains.com/issue/IDEA-116898 14 | # gradle/wrapper/gradle-wrapper.properties 15 | --------------------------------------------------------------------------------