Giter Site home page Giter Site logo

progressor / progressordefaultexercises Goto Github PK

View Code? Open in Web Editor NEW
1.0 2.0 0.0 14 KB

Default Exercises for Progressor

Home Page: http://progressor.io/

License: MIT License

C++ 13.69% C# 13.95% Visual Basic 14.18% Java 14.31% JavaScript 10.41% Kotlin 11.63% PHP 12.92% Python 8.92%
progressor programming-professor programming-exercise programming-exercises

progressordefaultexercises's People

Contributors

strubt avatar

Stargazers

 avatar

Watchers

 avatar  avatar

progressordefaultexercises's Issues

Exercise Java : LOOP: while()

English description errorneous: summar? -> sum up

Correction for german description:
Summieren Sie "number" in einer while()-Schleife, bis die Summe gleichgross wie oder grösser als "loopLength" ist. Retournieren Sie die Anzahl gebrauchter Schleifendurchgänge.

Please start method name in Template with lowercase: LoopCounter(..) -> loopCounter(...)

Example solution and testcases are not compliant with the description. Example
loopCounter(5,100) -> 5 . 5*5 = 25 and not >100...

Correct example solution: loopCounter(5,100) -> 19
public static int LoopCounter(int number, int loopLength) {
int c = 0;
int result = number;
while (result < loopLength) {
result += number;
c++;
}
return c;
}

Either adapt the description to the example solution/test cases or vice versa.

Kind regards,
Annett

Exercise Java IF: Basics

The generated method has a method name "Status" starting with uppercase, which is not recommend by Java coding guidelines.

public String Status(boolean homeworkDone) {
}

better

public String status(boolean homeworkDone) {
}

Exercise Java: stringTimes

There are the following test cases missing:

stringTimes("Hi", 0) -> ""
stringTimes(null, 5) -> ""

Thank you,
Annett

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.