Skip to content

Commit 1dba1af

Browse files
committed
reformat
1 parent fb259d4 commit 1dba1af

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

exercises/practice/flower-field/.meta/example.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#include "flower_field.h"
22

33
namespace flower_field {
4-
int score(const std::vector<std::string>& garden, size_t row,
5-
size_t column) {
4+
int score(const std::vector<std::string>& garden, size_t row, size_t column) {
65
int flowers{};
76
// north
87
if (row > 0 && garden.at(row - 1).at(column) == '*') ++flowers;

0 commit comments

Comments
 (0)