Skip to content

Commit

Permalink
fix-typo (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
Villosse authored Nov 2, 2023
1 parent edbbe02 commit dc03901
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
44 changes: 22 additions & 22 deletions content/b1/IterationEtRecursion/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ public static int Reverseint(int n)
```csharp
// Résultats attendus :
ReversInt(4); // == 4
ReversInt(-4); // == -4
ReversInt(24); // == 42
ReversInt(-123456); // == -654321
Reverseint(4); // == 4
Reverseint(-4); // == -4
Reverseint(24); // == 42
Reverseint(-123456); // == -654321
```

Expand Down Expand Up @@ -74,42 +74,42 @@ FindSub("Je est un autre.", ""); // == ArgumentException()
/// <remark>
/// Attention au premier mot de chaque string.
/// </remark>
public static bool FindSub(string s, string sub)
public static bool FirstUpper(string s, string sub)

```

```csharp
// Résultats attendus :
Revers_int("Je me crois en enfer, donc j'y suis."); // == "Je Me Crois En Enfer, Donc J'y Suis."
Revers_int(""); // == ""
Revers_int("!abc !def ghi .klm"); // == "!abc !def Ghi .klm"
FirstUpper("Je me crois en enfer, donc j'y suis."); // == "Je Me Crois En Enfer, Donc J'y Suis."
FirstUpper(""); // == ""
FirstUpper("!abc !def ghi .klm"); // == "!abc !def Ghi .klm"
```

## Replace_char
## ReplaceChar

```csharp

/// <summary>
/// Ecrire une fonction qui prend une string source, le char toReplace a remplacer par le char replace en parametre et retourne la nouvelle string
/// </summary>
public static string Replace_char(string source,char toReplace, char replace)
public static string ReplaceChar(string source,char toReplace, char replace)

```

```csharp
// Résultats attendus :
Revers_int("De la programmation avant toute chose.", "a", "*"); // == "De l* progr*mm*tion *v*nt toute chose."
ReplaceChar("De la programmation avant toute chose.", "a", "*"); // == "De l* progr*mm*tion *v*nt toute chose."
```

# Recursion.cs

Le but, ici, va être de résoudre ces problèmes seulement en utilisant de la récursion (pas de boucle).

## is_alpahnum
## IsAlphanum
```csharp

/// <summary>
Expand All @@ -118,22 +118,22 @@ Le but, ici, va être de résoudre ces problèmes seulement en utilisant de la r
/// <remark>
/// i >=0
/// </remark>
public static bool is_alpahnum(string s, int i)
public static bool IsAlphanum(string s, int i)

```

```csharp
// Résultats attendus :
is_alpahnum("abcdef132", 0); // == true
is_alpahnum("!abcdef", 0); // == false
is_alpahnum("!abcdef", 1); // == true
is_alpahnum("abcdef!", 15); // == true
IsAlphanum("abcdef132", 0); // == true
IsAlphanum("!abcdef", 0); // == false
IsAlphanum("!abcdef", 1); // == true
IsAlphanum("abcdef!", 15); // == true

```

## Reverse_str
## ReverseStr

```csharp

Expand All @@ -143,15 +143,15 @@ is_alpahnum("abcdef!", 15); // == true
/// <remark>
/// condition: length = s.Length
/// </remark>
public static string Reverse_str(string source, int length)
public static string ReverseStr(string source, int length)

```

```csharp
// Résultats attendus :
Reverse_str("42",2); // == "24"
Reverse_str("123",3); // == "321"
Reverse_str("ABcdeF",6); // == "FedcBA"
ReverseStr("42",2); // == "24"
ReverseStr("123",3); // == "321"
ReverseStr("ABcdeF",6); // == "FedcBA"
```
2 changes: 1 addition & 1 deletion content/b1/stream/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ Prenons le fichier : *ToDelete*
```

```csharp
public static void DeleteLines(string path, int n); // path est le chemin de mon fichier
public static void DeleteLines(path, 2); // path est le chemin de mon fichier
```
On aura alors le fichier *ToDelete* suivant:

Expand Down

0 comments on commit dc03901

Please sign in to comment.