Browse Source

docs(ultimatedivmod): correct grammar

master
davhojt 2 years ago committed by Dav Hojt
parent
commit
25400daa15
  1. 9
      subjects/ultimatedivmod/README.md

9
subjects/ultimatedivmod/README.md

@ -2,7 +2,7 @@
### Instructions ### Instructions
- Write a function that will be formatted as below. Create the following function.
### Expected function ### Expected function
@ -11,10 +11,9 @@ func UltimateDivMod(a *int, b *int) {
} }
``` ```
`UltimateDivMod` should divide the dereferenced value of `a` by the dereferenced value of `b`.
- This function will divide the `int` **a** and **b**. - Store the result of the division in the `int` which `a` points to.
- The result of this division will be stored in the `int` pointed by **a**. - Store the remainder of the division in the `int` which `b` points to.
- The remainder of this division will be stored in the `int` pointed by **b**.
### Usage ### Usage

Loading…
Cancel
Save