Skip to content

Commit

Permalink
Merge pull request #388 from coriolinus/alphametics-remove-unused-var…
Browse files Browse the repository at this point in the history
…iable-name

Remove unused variable from Alphametics stub
  • Loading branch information
coriolinus authored Nov 7, 2017
2 parents a471e18 + d44df84 commit 0a97c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/alphametics/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use std::collections::HashMap;

pub fn solve(puzzle: &str) -> Option<HashMap<char, u8>> {
pub fn solve(_: &str) -> Option<HashMap<char, u8>> {
unimplemented!()
}

0 comments on commit 0a97c1a

Please sign in to comment.