pull/63/head
Asabeneh 5 years ago
parent 5713a23e1d
commit 1080325438

@ -454,28 +454,29 @@ distance = 12
``` ```
```sh ```sh
[{'love':6}, [
{'you':5}, {word:'love', count:6},
{'can':3}, {word:'you', count:5},
{'what':2}, {word:'can', count:3},
{'teaching':2}, {word:'what', count:2},
{'not':2}, {word:'teaching', count:2},
{'else':2}, {word:'not', count:2},
{'do':2}, {word:'else', count:2},
{'I':2}, {word:'do', count:2},
{'which':1}, {word:'I', count:2},
{'to':1}, {word:'which', count:1},
{'the':1}, {word:'to', count:1},
{'something':1}, {word:'the', count:1},
{'if':1}, {word:'something', count:1},
{'give':1}, {word:'if', count:1},
{'develop':1}, {word:'give', count:1},
{'capabilities':1}, {word:'develop',count:1},
{'application':1}, {word:'capabilities',count:1},
{'an':1}, {word:'application', count:1},
{'all':1}, {word:'an',count:1},
{'Python':1}, {word:'all',count:1},
{'If':1}] {word:'Python',count:1},
{word:'If',count:1}]
``` ```
```js ```js
@ -483,16 +484,17 @@ distance = 12
``` ```
```sh ```sh
[{'love':6}, [{word:'love', count:6},
{'you':5}, {word:'you', count:5},
{'can':3}, {word:'can', count:3},
{'what':2}, {word:'what', count:2},
{'teaching':2}, {word:'teaching', count:2},
{'not':2}, {word:'not', count:2},
{'else':2}, {word:'else', count:2},
{'do':2}, {word:'do', count:2},
{'I':2}, {word:'I', count:2},
{'which':1}] {word:'which', count:1}
]
``` ```
### Exercises: Level 3 ### Exercises: Level 3

Loading…
Cancel
Save