fix(curriculum): remove duplicate tests in daily coding challenge 2025 10 03 (#62510)

This commit is contained in:
l3onhard
2025-10-04 18:40:32 +02:00
committed by GitHub
parent d230b45f5d
commit 299e1771fe
2 changed files with 0 additions and 30 deletions

View File

@@ -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

View File

@@ -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