You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 14, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,16 +72,16 @@ documentation.
72
72
- Efficiency
73
73
- Style
74
74
- Documentation
75
-
- Please comment on the postive aspects and improvements that are necessary while being encouraging.
75
+
- Please comment on the positive aspects and improvements that are necessary while being encouraging.
76
76
77
77
### Option 1: Python Task
78
78
79
79
Compulsory Task 1
80
80
Follow these steps:
81
81
82
-
- In a file called anagram.py, create:
82
+
- In a file called `anagram.py`, create:
83
83
84
-
- Given an array of strings strs, group the anagrams together.
84
+
- Given an array of strings `strs`, group the anagrams together.
85
85
- An Anagram is a word or phrase formed by rearranging the letters of a different word or phrase, typically using all the original letters exactly once.
- a recursive function that, given a number n, prints out the first n Fibonacci numbers (Fibonacci numbers are a sequence where each number is the sum of the previous two - 0 1 1 2 3 5 8...)
116
+
- a recursive function that, given a number `n`, prints out the first `n` Fibonacci numbers (Fibonacci numbers are a sequence where each number is the sum of the previous two - `0 1 1 2 3 5 8...`)
117
117
118
118
119
119
```java
@@ -214,11 +214,11 @@ def is_palindrome(x)
214
214
Compulsory Task 2
215
215
Follow these steps:
216
216
217
-
- In a file named caesar.ts, please create a function that implements the Caesar Cypher by taking 2 arguments, the string that is to be encoded and the shift value used for the encryption.
218
-
- For more information on what a Cypher Cipher is, please look at the following [resource](https://en.wikipedia.org/wiki/Caesar_cipher)
219
-
- The function should return "THE QUICK BROWN DOG JUMPED OVER THE LAZY FOX." When the following are passed as arguments:
220
-
- The string to be encoded: "GUR DHVPX OEBJA QBT WHZCRQ BIRE GUR YNML SBK."
221
-
- The shift value: 39
217
+
- In a file named `caesar.ts`, please create a function that implements the Caesar Cypher by taking 2 arguments: the string that is to be encoded and the shift value used for the encryption.
218
+
- For more information on what a Caesar Cipher is, please look at the following [resource](https://en.wikipedia.org/wiki/Caesar_cipher)
219
+
- The function should return `"THE QUICK BROWN DOG JUMPED OVER THE LAZY FOX."` when the following are passed as arguments:
220
+
- The string to be encoded: `"GUR DHVPX OEBJA QBT WHZCRQ BIRE GUR YNML SBK."`
0 commit comments