Skip to content
Merged
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
2 changes: 1 addition & 1 deletion exercises/practice/luhn/.approaches/recursion/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Luhn:

```

The `Luhn` object is initialzed with the `card_num` value, which is the number to be validated with the Luhn algorithm.
The `Luhn` object is initialized with the `card_num` value, which is the number to be validated with the Luhn algorithm.
The result of the validation is returned from `Luhn`'s `valid()` method.
In this approach, a member variable is set to the result of running the Luhn algorithm.
That variable is returned from the `valid()` method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Luhn:

```

The `Luhn` object is initialzed with the `card_num` value, which is the number to be validated with the Luhn algorithm.
The `Luhn` object is initialized with the `card_num` value, which is the number to be validated with the Luhn algorithm.
The result of the validation is returned from `Luhn`'s `valid()` method.
In this approach, a member variable is set to the result of running the Luhn algorithm.
That variable is returned from the `valid()` method.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Luhn:

```

The `Luhn` object is initialzed with the `card_num` value, which is the number to be validated with the Luhn algorithm.
The `Luhn` object is initialized with the `card_num` value, which is the number to be validated with the Luhn algorithm.
The result of the validation is returned from `Luhn`'s `valid()` method.
In this approach, a member variable is set to the result of running the Luhn algorithm.
That variable is returned from the `valid()` method.
Expand Down
Loading