mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-02-22 05:01:23 -05:00
fix(curriculum): remove duplicate tests in daily coding challenge 2025 10 03 (#62510)
This commit is contained in:
@@ -64,18 +64,6 @@ assert.equal(checkStrength("PassWord%^!"), "medium");
|
||||
assert.equal(checkStrength("qwerty12345"), "medium");
|
||||
```
|
||||
|
||||
`checkStrength("PASSWORD!")` should return `"medium"`.
|
||||
|
||||
```js
|
||||
assert.equal(checkStrength("PASSWORD!"), "medium");
|
||||
```
|
||||
|
||||
`checkStrength("PASSWORD!")` should return `"medium"`.
|
||||
|
||||
```js
|
||||
assert.equal(checkStrength("PASSWORD!"), "medium");
|
||||
```
|
||||
|
||||
`checkStrength("S3cur3P@ssw0rd")` should return `"strong"`.
|
||||
|
||||
```js
|
||||
|
||||
@@ -85,24 +85,6 @@ TestCase().assertEqual(check_strength("qwerty12345"), "medium")`)
|
||||
}})
|
||||
```
|
||||
|
||||
`check_strength("PASSWORD!")` should return `"medium"`.
|
||||
|
||||
```js
|
||||
({test: () => { runPython(`
|
||||
from unittest import TestCase
|
||||
TestCase().assertEqual(check_strength("PASSWORD!"), "medium")`)
|
||||
}})
|
||||
```
|
||||
|
||||
`check_strength("PASSWORD!")` should return `"medium"`.
|
||||
|
||||
```js
|
||||
({test: () => { runPython(`
|
||||
from unittest import TestCase
|
||||
TestCase().assertEqual(check_strength("PASSWORD!"), "medium")`)
|
||||
}})
|
||||
```
|
||||
|
||||
`check_strength("S3cur3P@ssw0rd")` should return `"strong"`.
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user