Skip to content

Commit b878dfb

Browse files
committed
Changed guard to pragma
1 parent 36c56a0 commit b878dfb

File tree

1 file changed

+2
-5
lines changed
  • exercises/practice/alphametics/.meta

1 file changed

+2
-5
lines changed
Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
#ifndef ALPHAMETICS_H
2-
#define ALPHAMETICS_H
1+
#pragma once
32

43
#include <optional>
54
#include <map>
@@ -9,6 +8,4 @@ namespace alphametics {
98

109
std::optional<std::map<char,int>> solve(const std::string& puzzle);
1110

12-
} // namespace alphametics
13-
14-
#endif // ALPHAMETICS_H
11+
} // namespace alphametics

0 commit comments

Comments
 (0)