* fix(curriculum): tests quotes * fix(curriculum): fill seed-teardown * fix(curriculum): fix tests and remove unneeded seed-teardown
		
			
				
	
	
	
		
			901 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			901 B
		
	
	
	
	
	
	
	
id, challengeType, title
| id | challengeType | title | 
|---|---|---|
| 5900f42f1000cf542c50ff41 | 5 | Problem 193: Squarefree Numbers | 
Description
How many squarefree numbers are there below 250?
Instructions
Tests
tests:
  - text: <code>euler193()</code> should return 684465067343069.
    testString: assert.strictEqual(euler193(), 684465067343069, '<code>euler193()</code> should return 684465067343069.');
Challenge Seed
function euler193() {
  // Good luck!
  return true;
}
euler193();
Solution
// solution required