Sha256: e2b933c25f1833cd7ee3905a1b3d744337e3a05786c26b31aa0250e22e3b995d

Contents?: true

Size: 1.26 KB

Versions: 97

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 the exercise file that 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

97 entries across 97 versions & 1 rubygems

Version Path
trackler-2.2.1.103 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.102 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.101 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.100 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.99 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.98 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.97 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.96 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.95 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.94 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.93 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.92 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.91 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.90 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.89 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.88 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.87 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.86 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.85 tracks/csharp/exercises/word-search/README.md
trackler-2.2.1.84 tracks/csharp/exercises/word-search/README.md