mirror of
				https://github.com/pocketpy/pocketpy
				synced 2025-10-26 14:30:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			84 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			84 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| def f(n):
 | |
|     if n == 900:
 | |
|         return -1
 | |
|     return f(n + 1)
 | |
| 
 | |
| assert f(0) == -1
 |