Skip to content
Open

Fix #11

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
2 changes: 1 addition & 1 deletion functions/tasks/randomizer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ int add(int a, int b) {
return a + b;
}
...
auto randomized_add = randomize(1);
auto randomized_add = randomize(add,3);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

here i added the function which needs to be randomised and 3 for example

int a = randomized_add(4); // will be equal to random value + 4
int b = randomized_add(3); // will be equal to random value + 3
```
Expand Down