Sha256: 9ab4e07f213c97d53c4158b370b6490088382339df569427b5b84b417ed7c6b8

Contents?: true

Size: 1.26 KB

Versions: 11

Compression:

Stored size: 1.26 KB

Contents

# Word Search

In word search puzzles you get a square of letters and have to find specific
words in them.

For example:

```
jefblpepre
camdcimgtc
oivokprjsm
pbwasqroua
rixilelhrs
wolcqlirpc
screeaumgr
alxhpburyi
jalaycalmp
clojurermt
```

There are several programming languages hidden in the above square.

Words can be hidden in all kinds of directions: left-to-right, right-to-left,
vertical and diagonal.

Given a puzzle and a list of words return the location of the first and last
letter of each word.

## HINTS

One of the uses of Tuples is returning multiple values from a function.   In this exercise, write
a function that returns a Tuple (the x- and y- part of a coordinate).

For more information on Tuples, see [this link](https://msdn.microsoft.com/en-us/library/system.tuple(v=vs.110).aspx).

### Submitting Exercises

Note that, when trying to submit an exercise, make sure you're exercise file you're submitting is in the `exercism/csharp/<exerciseName>` directory.

For example, if you're submitting `bob.cs` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/csharp/bob/bob.cs`.

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
trackler-2.2.1.6 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.5 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.4 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.3 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.2 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.1 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.0 tracks/csharp/exercises/word-search/README.md
trackler-2.2.0.6 tracks/csharp/exercises/word-search/README.md
trackler-2.2.0.5 tracks/csharp/exercises/word-search/README.md
trackler-2.2.0.4 tracks/csharp/exercises/word-search/README.md
trackler-2.2.0.3 tracks/csharp/exercises/word-search/README.md